Skip to content

Instantly share code, notes, and snippets.

@bdwellons
Created January 5, 2012 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdwellons/1565343 to your computer and use it in GitHub Desktop.
Save bdwellons/1565343 to your computer and use it in GitHub Desktop.
<%= form_for("user", :url => user_session_path) do |f| %>
<table>
<tr>
<td><%= f.label :email %></td>
<td><%= f.text_field :email %></td>
</tr>
<td><%= f.label :password %></td>
<td><%= f.password_field :password %></td>
</table>
<%= f.check_box :remember_me %>
<%= f.label :remember_me %><p/>
<%= f.submit 'Sign in' %><p/>
<%= link_to "Forgot your password?", new_password_path('user') %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment