GeoRSS aggregator and Layar augmented reality server
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

_form.html.haml 493 B

12345678910111213141516171819
  1. = form_for @user do |f|
  2. -if @user.errors.any?
  3. #error_explanation
  4. %h2= "#{pluralize(@user.errors.count, "error")} prohibited this user from being saved:"
  5. %ul
  6. - @user.errors.full_messages.each do |msg|
  7. %li= msg
  8. .field
  9. = f.label :email
  10. = f.text_field :email
  11. .field
  12. = f.label :password
  13. = f.password_field :password
  14. .field
  15. = f.label :password_confirmation
  16. = f.password_field :password_confirmation
  17. .actions
  18. = f.submit 'Save'