gitlab-org--gitlab-foss/app/views/profiles/passwords/edit.html.haml

35 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-08-17 14:53:50 +00:00
- breadcrumb_title "Edit Password"
2015-04-30 17:06:18 +00:00
- page_title "Password"
- @content_class = "limit-container-width" unless fluid_layout
2016-02-29 15:36:56 +00:00
.row.prepend-top-default
.col-lg-4.profile-settings-sidebar
2016-02-29 15:36:56 +00:00
%h4.prepend-top-0
= page_title
%p
After a successful password update, you will be redirected to the login page where you can log in with your new password.
.col-lg-8
2016-03-02 16:59:52 +00:00
%h5.prepend-top-0
2016-02-29 15:36:56 +00:00
Change your password
- unless @user.password_automatically_set?
or recover your current one
2016-03-01 14:55:39 +00:00
= form_for @user, url: profile_password_path, method: :put, html: {class: "update-password"} do |f|
= form_errors(@user)
- unless @user.password_automatically_set?
.form-group
= f.label :current_password, class: 'label-bold'
2016-02-29 15:36:56 +00:00
= f.password_field :current_password, required: true, class: 'form-control'
%p.form-text.text-muted
2016-02-29 15:36:56 +00:00
You must provide your current password in order to change it.
.form-group
= f.label :password, 'New password', class: 'label-bold'
= f.password_field :password, required: true, class: 'form-control'
.form-group
= f.label :password_confirmation, class: 'label-bold'
= f.password_field :password_confirmation, required: true, class: 'form-control'
.prepend-top-default.append-bottom-default
= f.submit 'Save password', class: "btn btn-success append-right-10"
- unless @user.password_automatically_set?
2016-02-29 15:36:56 +00:00
= link_to "I forgot my password", reset_profile_password_path, method: :put, class: "account-btn-link"