scube-server/app/views/users/new.html.haml
Thibault Jouan 1057cab009 Implement user registration feature
* Add users/new action and view
* Add users/create action
* Add link to sign up in sign in page
2011-09-07 18:36:06 +00:00

9 lines
243 B
Plaintext

= form_for(@user, :url => users_path) do |f|
= f.label :email
= f.text_field :email
= f.label :password
= f.password_field :password
= f.label :password_confirmation
= f.password_field :password_confirmation
= f.submit 'Sign up'