2014-01-10 16:35:58 +01:00
|
|
|
%h2 Sign up
|
2017-11-11 12:44:09 +01:00
|
|
|
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
2014-01-10 16:35:58 +01:00
|
|
|
= devise_error_messages!
|
2017-11-11 12:44:09 +01:00
|
|
|
.field
|
2014-01-10 16:35:58 +01:00
|
|
|
= f.label :email
|
|
|
|
%br/
|
2017-11-11 12:44:09 +01:00
|
|
|
= f.email_field :email, autofocus: true
|
|
|
|
.field
|
2014-01-10 16:35:58 +01:00
|
|
|
= f.label :password
|
2017-11-11 12:44:09 +01:00
|
|
|
- if @minimum_password_length
|
|
|
|
%em
|
|
|
|
(#{@minimum_password_length} characters minimum)
|
2014-01-10 16:35:58 +01:00
|
|
|
%br/
|
2017-11-11 12:44:09 +01:00
|
|
|
= f.password_field :password, autocomplete: "off"
|
|
|
|
.field
|
2014-01-10 16:35:58 +01:00
|
|
|
= f.label :password_confirmation
|
|
|
|
%br/
|
2017-11-11 12:44:09 +01:00
|
|
|
= f.password_field :password_confirmation, autocomplete: "off"
|
|
|
|
.actions
|
|
|
|
= f.submit "Sign up"
|
2014-01-10 16:35:58 +01:00
|
|
|
= render "devise/shared/links"
|