1
I have a form:
<% form_tag :action => 'validacao' do %>
<p> Login: <%= text_field :acesso, :email %></p>
<p> Senha: <%= password_field :acesso, :password %></p>
<p><%= submit_tag 'Entrar' %></p>
<% end %>
How to put properties like class
in the text_field
, in the password_field
and the button submit_tag
?