agenda-libre-ruby/app/views/devise/registrations/edit.html.haml

36 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-05-10 18:06:39 +02:00
%h2= t('.title', resource: resource.model_name.human)
= form_for(resource, as: resource_name, url: send("#{resource_name}_registration_path"), html: { method: :put }) do |f|
2019-05-08 14:16:19 +02:00
= render "devise/shared/error_messages", resource: resource
2017-11-11 12:44:09 +01:00
.field
= f.label :email
%br/
2019-05-08 14:16:19 +02:00
= f.email_field :email, autofocus: true, autocomplete: "email"
- if devise_mapping.confirmable? && resource.pending_reconfirmation?
2019-05-10 18:06:39 +02:00
%div= t('.currently_waiting_confirmation_for_email', email: resource.unconfirmed_email)
2017-11-11 12:44:09 +01:00
.field
= f.label :password
2019-05-10 18:06:39 +02:00
%i
(#{t('.leave_blank_if_you_don_t_want_to_change_it')})
%br/
2019-05-08 14:16:19 +02:00
= f.password_field :password, autocomplete: "new-password"
2017-11-11 12:44:09 +01:00
- if @minimum_password_length
%br/
2019-05-10 18:06:39 +02:00
%em= t('devise.shared.minimum_password_length', count: @minimum_password_length)
2017-11-11 12:44:09 +01:00
.field
= f.label :password_confirmation
%br/
2019-05-08 14:16:19 +02:00
= f.password_field :password_confirmation, autocomplete: "new-password"
2017-11-11 12:44:09 +01:00
.field
= f.label :current_password
2019-05-10 18:06:39 +02:00
%i
(#{t('.we_need_your_current_password_to_confirm_your_changes')})
%br/
2019-05-08 14:16:19 +02:00
= f.password_field :current_password, autocomplete: "current-password"
2017-11-11 12:44:09 +01:00
.actions
2019-05-10 18:06:39 +02:00
= f.submit t('.update')
%h3= t('.cancel_my_account')
%p
2019-05-10 18:06:39 +02:00
= t('.unhappy')
= button_to t('.cancel_my_account'), send("#{resource_name}_registration_path"), data: { confirm: t('.are_you_sure') }, method: :delete
= link_to t('devise.shared.links.back'), :back