Very simple question, I have:
<%= f.submit %>
I want to apply class=\'btn\' to it. I know that I can easily do this:
class=\'btn\'
<%= f.submit nil, :class => 'btw' %>
or even
<%= f.submit :class => 'btw' %>