Reputation: 557
So I have this login page in my rails app. I want the first form which is for the username to be allready selected by default, when I enter the page.
How can I achieve this?
Upvotes: 0
Views: 42
Reputation: 5249
Pass the autofocus: true
option to the form helper:
= f.text_field :username, autofocus: true
Upvotes: 1