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

36 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-04-30 17:06:18 +00:00
- page_title "Password"
- header_title page_title, edit_profile_password_path
2016-02-29 15:36:56 +00:00
.row.prepend-top-default
.col-lg-3.profile-settings-sidebar
%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-9
%p
Change your password
- unless @user.password_automatically_set?
or recover your current one
= form_for @user, url: profile_password_path, method: :put do |f|
2013-10-09 13:17:40 +00:00
-if @user.errors.any?
.alert.alert-danger
2013-10-09 13:17:40 +00:00
%ul
- @user.errors.full_messages.each do |msg|
%li= msg
- unless @user.password_automatically_set?
.form-group
2016-02-29 15:36:56 +00:00
= 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.
.form-group
= f.label :password, 'New password', class: 'label-light'
= f.password_field :password, required: true, class: 'form-control'
2016-02-29 15:36:56 +00:00
.form-group
= f.label :password_confirmation, class: 'label-light'
= f.password_field :password_confirmation, required: true, class: 'form-control'
2016-02-29 15:36:56 +00:00
.prepend-top-default.append-bottom-default
= f.submit 'Save password', class: "btn btn-create append-right-10"
= link_to "I forgot my password", reset_profile_password_path, method: :put, class: "account-btn-link"