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

36 lines
1.7 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
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
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
2016-06-02 11:05:42 +05:30
%h5.prepend-top-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'
2016-06-02 11:05:42 +05:30
= f.password_field :current_password, required: true, class: 'form-control'
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'
2016-06-02 11:05:42 +05:30
= f.password_field :password, required: true, class: 'form-control'
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'
2016-06-02 11:05:42 +05:30
= f.password_field :password_confirmation, required: true, class: 'form-control'
.prepend-top-default.append-bottom-default
2019-09-04 21:01:54 +05:30
= f.submit _('Save password'), class: "btn btn-success append-right-10"
2016-06-02 11:05:42 +05:30
- unless @user.password_automatically_set?
2019-09-04 21:01:54 +05:30
= link_to _('I forgot my password'), reset_profile_password_path, method: :put, class: "account-btn-link"