Created
January 23, 2015 02:11
-
-
Save falonofthetower/0cf6036bf36c475071df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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