debian-mirror-gitlab/app/views/profiles/passwords/edit.html.haml

36 lines
1.8 KiB
Text
Raw Normal View History

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