2014-01-10 16:35:58 +01:00
|
|
|
%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|
|
2014-01-10 16:35:58 +01:00
|
|
|
= devise_error_messages!
|
|
|
|
= f.hidden_field :reset_password_token
|
2017-11-11 12:44:09 +01:00
|
|
|
.field
|
2014-01-10 16:35:58 +01:00
|
|
|
= 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/
|
|
|
|
= f.password_field :password, autofocus: true, autocomplete: "off"
|
|
|
|
.field
|
2014-01-10 16:35:58 +01:00
|
|
|
= 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"
|
2014-01-10 16:35:58 +01:00
|
|
|
= render "devise/shared/links"
|