This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/sessions/new.html.erb
2013-10-07 04:59:21 +02:00

15 lines
355 B
Plaintext

<h1>Log in</h1>
<p>Not a member? <%= link_to "Join us here", signup_path %>!</p>
<%= form_tag login_path do |f| %>
<div id="form_labels">
<%= label_tag :email %>
<%= label_tag :password %>
</div>
<div id="form_inputs">
<%= text_field_tag :email %>
<%= password_field_tag :password %>
</div>
<%= submit_tag "Log in" %>
<% end %>