Retrospring/app/views/devise/passwords/edit.html.haml

20 lines
735 B
Plaintext
Raw Normal View History

2020-05-10 04:45:48 -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|
2020-05-22 14:33:30 -07:00
= render 'devise/shared/error_messages', resource: resource
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-10 13:27:39 -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-10 04:45:48 -07:00
= f.submit 'Change my password'
2014-08-01 08:40:48 -07:00
2020-05-10 04:45:48 -07:00
= render 'devise/shared/links'
= render 'shared/links'