2016-10-13 16:03:12 -07:00
|
|
|
- content_for :page_title do
|
2016-11-15 14:02:57 -08:00
|
|
|
= t('auth.set_new_password')
|
2016-10-13 16:03:12 -07:00
|
|
|
|
2018-02-10 08:09:44 -08: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 07:37:15 -07:00
|
|
|
|
2018-03-04 01:00:24 -08:00
|
|
|
- if !use_seamless_external_login? || resource.encrypted_password.present?
|
2018-02-10 08:09:44 -08:00
|
|
|
= f.input :reset_password_token, as: :hidden
|
2016-10-18 07:37:15 -07:00
|
|
|
|
2018-09-18 07:45:58 -07: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 01:18:55 -08:00
|
|
|
|
2018-02-10 08:09:44 -08:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('auth.set_new_password'), type: :submit
|
|
|
|
- else
|
2018-02-28 10:04:53 -08:00
|
|
|
%p.hint= t('users.seamless_external_login')
|
2016-10-03 07:38:22 -07:00
|
|
|
|
2017-05-17 06:36:56 -07:00
|
|
|
.form-footer= render 'auth/shared/links'
|