Skip to content

Instantly share code, notes, and snippets.

@mthomas
Created December 20, 2010 01:02
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 mthomas/747896 to your computer and use it in GitHub Desktop.
Save mthomas/747896 to your computer and use it in GitHub Desktop.
<h1>Sign In</h1>
<%= form_for(:session, :url => sessions_path) do |f| %>
<div class="field">
<%= f.label :email %>
<%= f.text_field :email %>
</div>
<div class="field">
<%= f.label :password %>
<%= f.password_field :password %>
</div>
<div class="actions">
<%= f.submit "Sign in" %>
</div>
<% end %>
<p>New user? <%= link_to "Sign up now!", signup_path %></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment