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

34 lines
1.5 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- 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
2016-06-02 11:05:42 +05:30
.row.prepend-top-default
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
2016-06-02 11:05:42 +05:30
%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.
2017-09-10 17:25:29 +05:30
.col-lg-8
2016-06-02 11:05:42 +05:30
%h5.prepend-top-0
Change your password
- unless @user.password_automatically_set?
or recover your current one
= 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
2016-06-02 11:05:42 +05:30
= f.label :current_password, class: 'label-light'
= f.password_field :current_password, required: true, class: 'form-control'
%p.help-block
You must provide your current password in order to change it.
2014-09-02 18:07:02 +05:30
.form-group
2016-06-02 11:05:42 +05:30
= f.label :password, 'New password', class: 'label-light'
= f.password_field :password, required: true, class: 'form-control'
2014-09-02 18:07:02 +05:30
.form-group
2016-06-02 11:05:42 +05:30
= f.label :password_confirmation, class: 'label-light'
= f.password_field :password_confirmation, required: true, class: 'form-control'
.prepend-top-default.append-bottom-default
= f.submit 'Save password', class: "btn btn-create append-right-10"
- unless @user.password_automatically_set?
= link_to "I forgot my password", reset_profile_password_path, method: :put, class: "account-btn-link"