2015-05-13 15:02:19 -07:00
|
|
|
- provide(:title, generate_title("Reset Password"))
|
2014-08-01 08:40:48 -07:00
|
|
|
.container
|
2020-05-06 12:56:10 -07:00
|
|
|
.row
|
|
|
|
.col-sm-4.offset-sm-4
|
|
|
|
.card.mt-3
|
|
|
|
.card-body
|
|
|
|
%h1 Change your password
|
|
|
|
= bootstrap_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
|
|
|
= devise_error_messages!
|
2014-08-01 08:40:48 -07:00
|
|
|
|
2020-05-06 12:56:10 -07:00
|
|
|
= f.hidden_field :reset_password_token
|
2014-08-01 08:40:48 -07:00
|
|
|
|
2020-05-06 12:56:10 -07:00
|
|
|
= f.password_field :password, autofocus: true, autocomplete: "off", label: "New password"
|
|
|
|
= f.password_field :password_confirmation, autocomplete: "off", label: "Confirm new password"
|
2014-08-01 08:40:48 -07:00
|
|
|
|
2020-05-06 12:56:10 -07:00
|
|
|
= f.submit "Change my password"
|
2014-08-01 08:40:48 -07:00
|
|
|
|
2020-05-06 12:56:10 -07:00
|
|
|
= render "devise/shared/links"
|
2014-11-25 04:58:20 -08:00
|
|
|
= render "shared/links"
|