2016-11-03 12:29:30 +05:30
|
|
|
= render 'devise/shared/tab_single', tab_title:'Change your password'
|
2015-04-26 12:48:37 +05:30
|
|
|
.login-box
|
|
|
|
.login-body
|
2018-03-17 18:26:18 +05:30
|
|
|
= form_for(resource, as: resource_name, url: password_path(:user), html: { method: :put, class: 'gl-show-field-errors' }) do |f|
|
2014-09-02 18:07:02 +05:30
|
|
|
.devise-errors
|
2019-09-04 21:01:54 +05:30
|
|
|
= render "devise/shared/error_messages", resource: resource
|
2014-09-02 18:07:02 +05:30
|
|
|
= f.hidden_field :reset_password_token
|
2016-11-03 12:29:30 +05:30
|
|
|
.form-group
|
2017-09-10 17:25:29 +05:30
|
|
|
= f.label 'New password', for: "user_password"
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.password_field :password, class: "form-control gl-form-input top", required: true, title: 'This field is required', data: { qa_selector: 'password_field'}
|
2016-11-03 12:29:30 +05:30
|
|
|
.form-group
|
2017-09-10 17:25:29 +05:30
|
|
|
= f.label 'Confirm new password', for: "user_password_confirmation"
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.password_field :password_confirmation, class: "form-control gl-form-input bottom", title: 'This field is required', data: { qa_selector: 'password_confirmation_field' }, required: true
|
2015-04-26 12:48:37 +05:30
|
|
|
.clearfix
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.submit "Change your password", class: "gl-button btn btn-confirm", data: { qa_selector: 'change_password_button' }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
.clearfix.prepend-top-20
|
|
|
|
%p
|
2016-11-03 12:29:30 +05:30
|
|
|
%span.light Didn't receive a confirmation email?
|
2018-03-17 18:26:18 +05:30
|
|
|
= link_to "Request a new one", new_confirmation_path(:user)
|
2016-11-03 12:29:30 +05:30
|
|
|
= render 'devise/shared/sign_in_link'
|