2017-08-17 10:53:50 -04:00
|
|
|
- breadcrumb_title "Edit Password"
|
2015-04-30 13:06:18 -04:00
|
|
|
- page_title "Password"
|
2017-06-22 10:47:50 -04:00
|
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
2015-09-09 17:05:47 -04:00
|
|
|
|
2016-02-29 10:36:56 -05:00
|
|
|
.row.prepend-top-default
|
2017-06-22 10:47:50 -04:00
|
|
|
.col-lg-4.profile-settings-sidebar
|
2016-02-29 10:36:56 -05: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.
|
2017-06-22 10:47:50 -04:00
|
|
|
.col-lg-8
|
2016-03-02 11:59:52 -05:00
|
|
|
%h5.prepend-top-0
|
2016-02-29 10:36:56 -05:00
|
|
|
Change your password
|
|
|
|
- unless @user.password_automatically_set?
|
|
|
|
or recover your current one
|
2016-03-01 09:55:39 -05:00
|
|
|
= form_for @user, url: profile_password_path, method: :put, html: {class: "update-password"} do |f|
|
2016-04-04 21:25:38 -04:00
|
|
|
= form_errors(@user)
|
|
|
|
|
2015-02-13 07:33:28 -05:00
|
|
|
- unless @user.password_automatically_set?
|
|
|
|
.form-group
|
2018-07-19 18:11:31 -04:00
|
|
|
= f.label :current_password, class: 'label-bold'
|
2016-02-29 10:36:56 -05:00
|
|
|
= f.password_field :current_password, required: true, class: 'form-control'
|
2018-04-11 14:26:37 -04:00
|
|
|
%p.form-text.text-muted
|
2016-02-29 10:36:56 -05:00
|
|
|
You must provide your current password in order to change it.
|
2016-03-24 07:22:44 -04:00
|
|
|
.form-group
|
2018-07-19 18:11:31 -04:00
|
|
|
= f.label :password, 'New password', class: 'label-bold'
|
2016-03-24 07:22:44 -04:00
|
|
|
= f.password_field :password, required: true, class: 'form-control'
|
|
|
|
.form-group
|
2018-07-19 18:11:31 -04:00
|
|
|
= f.label :password_confirmation, class: 'label-bold'
|
2016-03-24 07:22:44 -04:00
|
|
|
= f.password_field :password_confirmation, required: true, class: 'form-control'
|
|
|
|
.prepend-top-default.append-bottom-default
|
2018-09-18 05:58:22 -04:00
|
|
|
= f.submit 'Save password', class: "btn btn-success append-right-10"
|
2016-03-24 07:22:44 -04:00
|
|
|
- unless @user.password_automatically_set?
|
2016-02-29 10:36:56 -05:00
|
|
|
= link_to "I forgot my password", reset_profile_password_path, method: :put, class: "account-btn-link"
|