GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
460 B

  1. %h1 Log in
  2. = form_tag(sessions_path, :id => "login") do
  3. .field
  4. = label_tag :email
  5. %br
  6. = text_field_tag :email, params[:email], :size => 40
  7. .field
  8. = label_tag :password
  9. %br
  10. = password_field_tag :password, '', :size => 40
  11. .field
  12. = check_box_tag :remember_me, 1, params[:remember_me]
  13. = label_tag :remember_me
  14. .actions
  15. = submit_tag "Log in"
  16. = link_to "Forgotten your password?", new_password_reset_path