Users can now login form the site homepage (previously the front login page
[selectricity-live] / app / views / site / _basic_login.rhtml
1 <% form_tag :controller => 'account', :action => 'login'  do %>
2
3   <p><label for="login">Login</label></p>
4   <p><%= text_field_tag 'login' %></p>
5   <p><label for="password">Password</label></p>
6   <p><%= password_field_tag 'password' %></p>
7
8   <p><%= submit_tag 'Log in' %></p>
9 <% end %>
10
11 <p><%= link_to 'Register for an account', :controller => 'account', :action => 'signup' %></p>
12
13 <p><%= link_to 'Lost or forgot your password?', :controller => 'account', :action => 'forgot_password' %></p>

Benjamin Mako Hill || Want to submit a patch?