more forum stuff

This commit is contained in:
jomo
2013-10-16 00:51:50 +02:00
parent 7c578874c9
commit b6115970dd
25 changed files with 208 additions and 55 deletions

View File

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