Using autofocus and text_field form helpers in Rails
forms, html, ruby
Solution
`f.text_field :email, autofocus: true`
Problem
How do I include the '`autofocus`' attribute on an `HTML5` form using the `text_field` form helper in `Rails`? e.g. `<%= f.text_field :email %>` Where does autofocus go? Thanks