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?
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?
Pass the autofocus: true
option to the form helper:
= f.text_field :username, autofocus: true