scube-server/app/views/sessions/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

8 lines
205 B
Plaintext

= form_for(:session, :url => sessions_path) do |f|
= f.label :email
= f.text_field :email
= f.label :password
= f.password_field :password
= f.submit 'Sign in'
= link_to 'Sign up', new_user_path