I am using simple form in my Rails application, i tried to set value and class to a specific input field just like below
<%= f.input :email, :required => true, :autofocus => true, :value => "Email", :class => "myclass" %>
Html output :
but i could not able to see value and class set in the actual html form.
What am i doing wrong?