Skip to content

Instantly share code, notes, and snippets.

@falonofthetower
Created January 23, 2015 02:11
Show Gist options
  • Save falonofthetower/0cf6036bf36c475071df to your computer and use it in GitHub Desktop.
Save falonofthetower/0cf6036bf36c475071df to your computer and use it in GitHub Desktop.
<h1>Please log in</h1>
<div class='well'>
<%= form_tag '/login' %>
<div class='control-group'>
<%= label_tag :username %>
<%= text_field_tag :username, params[:username] || '' %>
</div>
<div class='control-group'>
<%= label_tag :password %>
<%= password_field_tag :password, params[:password] || '' %>
</div>
<%= submit_tag "Login", class: 'btn btn-success' %>
<% end %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment