Skip to content

Instantly share code, notes, and snippets.

@jpfinlay
Created February 15, 2013 18:49
Show Gist options
  • Save jpfinlay/4962443 to your computer and use it in GitHub Desktop.
Save jpfinlay/4962443 to your computer and use it in GitHub Desktop.
<h1>Login</h1>
<%= form_tag author_sessions_path, method: :post do %>
<div class="field">
<%= label_tag :username %>
<%= text_field_tag :username %>
<br/>
</div>
<div class="field">
<%= label_tag :password %>
<%= password_field_tag :password %>
<br/>
</div>
<div class="actions">
<%= submit_tag "Login" %>
</div>
<% end %>
<%= link_to 'Back', articles_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment