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

20 lines
708 B
Plaintext
Raw Normal View History

%h2 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
= f.label :password, "New password"
%br/
2017-11-11 12:44:09 +01:00
- if @minimum_password_length
%em
(#{@minimum_password_length} characters minimum)
%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
= f.label :password_confirmation, "Confirm new password"
%br/
2017-11-11 12:44:09 +01:00
= f.password_field :password_confirmation, autocomplete: "off"
.actions
= f.submit "Change my password"
= render "devise/shared/links"