2016-10-10 10:34:57 -04:00
|
|
|
= render 'devise/shared/tab_single', tab_title:'Change your password'
|
2014-08-15 10:52:20 -04:00
|
|
|
.login-box
|
|
|
|
.login-body
|
2016-11-02 06:35:21 -04:00
|
|
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put, class: 'gl-show-field-errors' }) do |f|
|
2014-07-11 09:05:57 -04:00
|
|
|
.devise-errors
|
|
|
|
= devise_error_messages!
|
|
|
|
= f.hidden_field :reset_password_token
|
2016-09-09 08:21:00 -04:00
|
|
|
.form-group
|
|
|
|
= f.label 'New password', for: :password
|
|
|
|
= f.password_field :password, class: "form-control top", required: true, title: 'This field is required'
|
|
|
|
.form-group
|
|
|
|
= f.label 'Confirm new password', for: :password_confirmation
|
|
|
|
= f.password_field :password_confirmation, class: "form-control bottom", title: 'This field is required', required: true
|
2015-02-05 09:56:58 -05:00
|
|
|
.clearfix
|
2015-03-22 23:10:12 -04:00
|
|
|
= f.submit "Change your password", class: "btn btn-primary"
|
2015-02-05 09:56:58 -05:00
|
|
|
|
|
|
|
.clearfix.prepend-top-20
|
|
|
|
%p
|
2016-09-09 08:21:00 -04:00
|
|
|
%span.light Didn't receive a confirmation email?
|
|
|
|
= link_to "Request a new one", new_confirmation_path(resource_name)
|
|
|
|
= render 'devise/shared/sign_in_link'
|