2016-10-13 19:03:12 -04:00
|
|
|
- content_for :page_title do
|
2016-11-15 17:02:57 -05:00
|
|
|
= t('auth.set_new_password')
|
2016-10-13 19:03:12 -04:00
|
|
|
|
2018-02-10 11:09:44 -05:00
|
|
|
= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
|
|
|
= render 'shared/error_messages', object: resource
|
2016-10-18 10:37:15 -04:00
|
|
|
|
2018-03-04 04:00:24 -05:00
|
|
|
- if !use_seamless_external_login? || resource.encrypted_password.present?
|
2018-02-10 11:09:44 -05:00
|
|
|
= f.input :reset_password_token, as: :hidden
|
2016-10-18 10:37:15 -04:00
|
|
|
|
2018-09-18 10:45:58 -04:00
|
|
|
.fields-group
|
|
|
|
= f.input :password, wrapper: :with_label, autofocus: true, label: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'off' }, required: true
|
|
|
|
.fields-group
|
|
|
|
= f.input :password_confirmation, wrapper: :with_label, label: t('simple_form.labels.defaults.confirm_new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_new_password'), :autocomplete => 'off' }, required: true
|
2018-02-02 04:18:55 -05:00
|
|
|
|
2018-02-10 11:09:44 -05:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('auth.set_new_password'), type: :submit
|
|
|
|
- else
|
2018-02-28 13:04:53 -05:00
|
|
|
%p.hint= t('users.seamless_external_login')
|
2016-10-03 10:38:22 -04:00
|
|
|
|
2017-05-17 09:36:56 -04:00
|
|
|
.form-footer= render 'auth/shared/links'
|