2019-05-16 23:39:30 -04:00
|
|
|
- breadcrumb_title _('Edit Password')
|
|
|
|
- page_title _('Password')
|
2017-06-22 10:47:50 -04:00
|
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
2015-09-09 17:05:47 -04:00
|
|
|
|
2020-06-26 02:09:03 -04:00
|
|
|
.row.gl-mt-3
|
2017-06-22 10:47:50 -04:00
|
|
|
.col-lg-4.profile-settings-sidebar
|
2020-05-21 14:08:27 -04:00
|
|
|
%h4.gl-mt-0
|
2016-02-29 10:36:56 -05:00
|
|
|
= page_title
|
|
|
|
%p
|
2019-05-16 23:39:30 -04:00
|
|
|
= _('After a successful password update, you will be redirected to the login page where you can log in with your new password.')
|
2017-06-22 10:47:50 -04:00
|
|
|
.col-lg-8
|
2020-05-21 14:08:27 -04:00
|
|
|
%h5.gl-mt-0
|
2019-05-29 07:51:28 -04:00
|
|
|
- if @user.password_automatically_set
|
2019-05-29 00:36:33 -04:00
|
|
|
= _('Change your password')
|
|
|
|
- else
|
|
|
|
= _('Change your password or recover your current one')
|
2016-03-01 09:55:39 -05:00
|
|
|
= form_for @user, url: profile_password_path, method: :put, html: {class: "update-password"} do |f|
|
2016-04-04 21:25:38 -04:00
|
|
|
= form_errors(@user)
|
|
|
|
|
2015-02-13 07:33:28 -05:00
|
|
|
- unless @user.password_automatically_set?
|
|
|
|
.form-group
|
2019-05-16 23:39:30 -04:00
|
|
|
= f.label :current_password, _('Current password'), class: 'label-bold'
|
2019-09-23 02:06:19 -04:00
|
|
|
= f.password_field :current_password, required: true, class: 'form-control', data: { qa_selector: 'current_password_field' }
|
2018-04-11 14:26:37 -04:00
|
|
|
%p.form-text.text-muted
|
2019-05-16 23:39:30 -04:00
|
|
|
= _('You must provide your current password in order to change it.')
|
2016-03-24 07:22:44 -04:00
|
|
|
.form-group
|
2019-05-16 23:39:30 -04:00
|
|
|
= f.label :password, _('New password'), class: 'label-bold'
|
2019-09-23 02:06:19 -04:00
|
|
|
= f.password_field :password, required: true, class: 'form-control', data: { qa_selector: 'new_password_field' }
|
2016-03-24 07:22:44 -04:00
|
|
|
.form-group
|
2019-05-16 23:39:30 -04:00
|
|
|
= f.label :password_confirmation, _('Password confirmation'), class: 'label-bold'
|
2019-09-23 02:06:19 -04:00
|
|
|
= f.password_field :password_confirmation, required: true, class: 'form-control', data: { qa_selector: 'confirm_password_field' }
|
2020-06-26 02:09:03 -04:00
|
|
|
.gl-mt-3.gl-mb-3
|
2020-10-19 08:09:20 -04:00
|
|
|
= f.submit _('Save password'), class: "gl-button btn btn-success gl-mr-3", data: { qa_selector: 'save_password_button' }
|
2016-03-24 07:22:44 -04:00
|
|
|
- unless @user.password_automatically_set?
|
2019-12-09 07:07:58 -05:00
|
|
|
= link_to _('I forgot my password'), reset_profile_password_path, method: :put
|