2015-04-30 13:06:18 -04:00
|
|
|
- page_title "Password"
|
2015-09-09 17:05:47 -04:00
|
|
|
- header_title page_title, edit_profile_password_path
|
|
|
|
|
2016-02-29 10:36:56 -05: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
|
2016-03-01 09:55:39 -05:00
|
|
|
= form_for @user, url: profile_password_path, method: :put, html: {class: "update-password"} do |f|
|
2013-10-09 09:17:40 -04:00
|
|
|
-if @user.errors.any?
|
2013-12-31 09:34:14 -05:00
|
|
|
.alert.alert-danger
|
2013-10-09 09:17:40 -04:00
|
|
|
%ul
|
|
|
|
- @user.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
2015-02-13 07:33:28 -05:00
|
|
|
- unless @user.password_automatically_set?
|
|
|
|
.form-group
|
2016-02-29 10:36:56 -05: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'
|
2015-01-15 08:02:09 -05:00
|
|
|
= f.password_field :password, required: true, class: 'form-control'
|
2016-02-29 10:36:56 -05:00
|
|
|
.form-group
|
|
|
|
= f.label :password_confirmation, class: 'label-light'
|
2013-12-30 19:50:36 -05:00
|
|
|
= f.password_field :password_confirmation, required: true, class: 'form-control'
|
2016-02-29 10:36:56 -05: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"
|