* Add users/new action and view * Add users/create action * Add link to sign up in sign in page
9 lines
243 B
Plaintext
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'
|