2014-01-10 16:35:58 +01:00
|
|
|
%h2
|
|
|
|
Edit #{resource_name.to_s.humanize}
|
2017-11-11 12:44:09 +01:00
|
|
|
= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) 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
|
2014-01-10 16:35:58 +01:00
|
|
|
- if devise_mapping.confirmable? && resource.pending_reconfirmation?
|
|
|
|
%div
|
|
|
|
Currently waiting confirmation for: #{resource.unconfirmed_email}
|
2017-11-11 12:44:09 +01:00
|
|
|
.field
|
2014-01-10 16:35:58 +01:00
|
|
|
= f.label :password
|
|
|
|
%i (leave blank if you don't want to change it)
|
|
|
|
%br/
|
2017-11-11 12:44:09 +01:00
|
|
|
= f.password_field :password, autocomplete: "off"
|
|
|
|
- if @minimum_password_length
|
|
|
|
%br/
|
|
|
|
%em
|
|
|
|
= @minimum_password_length
|
|
|
|
characters minimum
|
|
|
|
.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"
|
|
|
|
.field
|
2014-01-10 16:35:58 +01:00
|
|
|
= f.label :current_password
|
|
|
|
%i (we need your current password to confirm your changes)
|
|
|
|
%br/
|
2017-11-11 12:44:09 +01:00
|
|
|
= f.password_field :current_password, autocomplete: "off"
|
|
|
|
.actions
|
|
|
|
= f.submit "Update"
|
2014-01-10 16:35:58 +01:00
|
|
|
%h3 Cancel my account
|
|
|
|
%p
|
2017-11-11 12:44:09 +01:00
|
|
|
Unhappy? #{button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete}
|
2014-01-10 16:35:58 +01:00
|
|
|
= link_to "Back", :back
|