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

19 lines
747 B
Plaintext
Raw Normal View History

2019-05-10 18:06:39 +02:00
%h2= t('.change_your_password')
2017-11-11 12:44:09 +01:00
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
2019-05-08 14:16:19 +02:00
= render "devise/shared/error_messages", resource: resource
= f.hidden_field :reset_password_token
2017-11-11 12:44:09 +01:00
.field
2019-05-10 18:06:39 +02:00
= f.label :password, t('.new_password')
%br/
2017-11-11 12:44:09 +01:00
- if @minimum_password_length
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
%br/
2019-05-08 14:16:19 +02:00
= f.password_field :password, autofocus: true, autocomplete: "new-password"
2017-11-11 12:44:09 +01:00
.field
2019-05-10 18:06:39 +02:00
= f.label :password_confirmation, t('.confirm_new_password')
%br/
2017-11-11 12:44:09 +01:00
= f.password_field :password_confirmation, autocomplete: "off"
.actions
2019-05-10 18:06:39 +02:00
= f.submit t('.change_my_password')
= render "devise/shared/links"