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
2014-02-01 00:56:50 +01:00

15 lines
470 B
Plaintext

<h1>Log in</h1>
<p>Not a member? <%= link_to "Join us", signup_path %>!</p>
<%= form_tag login_path do |f| %>
<div id="form_labels">
<%= label_tag :email %>
<%= label_tag :password %>
</div>
<div id="form_inputs">
<div><%= text_field_tag :email, nil, placeholder: "email@example.com" %></div>
<div><%= password_field_tag :password, nil, placeholder: "••••••" %></div>
</div>
<%= submit_tag "Log in", class: "btn blue" %>
<% end %>