-<% -%>
- <% form_tag :controller => 'account', :action => 'login' do %>
- <table>
- <label for="login">Login</label>
- <%= text_field "Login", "login", :size => 30 %><br />
- <label for="password">Password</label>
- <%= password_field "Password", "password", :size => 30 %><br />
- </table>
+<% form_tag :controller => 'account', :action => 'login' do %>
- <div class="button-bar">
- <p><%= submit_tag 'Login' %></p>
-<% end %>
- <p><%= link_to 'Register for an account', :controller =>
-'account', :action => 'signup' %></p>
+ <p><label for="login">Login</label></p>
+ <p><%= text_field_tag 'login' %></p>
+ <p><label for="password">Password</label></p>
+ <p><%= password_field_tag 'password' %></p>
- <p><%= link_to 'Lost or forgot your password?', :controller => 'account', :action => 'forgot_password' %></p>
+ <p><%= submit_tag 'Log in' %></p>
+<% end %>
- </div>
+<p><%= link_to 'Register for an account', :controller => 'account', :action => 'signup' %></p>
+<p><%= link_to 'Lost or forgot your password?', :controller => 'account', :action => 'forgot_password' %></p>