GeoRSS aggregator and Layar augmented reality server
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

32 wiersze
684 B

  1. %h1 Choose a new password
  2. = form_for @user, :url => password_reset_path(@user), :html => { :method => :put } do |f|
  3. - if @user.errors.any?
  4. #error_explanation
  5. %h2
  6. = pluralize(@user.errors.count, "error")
  7. prohibited this user from being saved:
  8. %ul
  9. - @user.errors.full_messages.each do |msg|
  10. %li= msg
  11. .field
  12. = f.label :email
  13. %br
  14. = @user.email
  15. .field
  16. = f.label :password
  17. %br
  18. = f.password_field :password
  19. .field
  20. = f.label :password_confirmation
  21. %br
  22. = f.password_field :password_confirmation
  23. = hidden_field_tag :token, @token
  24. .actions
  25. = f.submit