2016-10-14 00:03:12 +01:00
|
|
|
- content_for :page_title do
|
2016-11-15 22:02:57 +00:00
|
|
|
= t('auth.set_new_password')
|
2016-10-14 00:03:12 +01:00
|
|
|
|
2018-02-02 09:18:55 +00: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 15:37:15 +01:00
|
|
|
|
2018-02-02 09:18:55 +00:00
|
|
|
- if use_pam? || current_user.encrypted_password.present?
|
|
|
|
= f.input :reset_password_token, as: :hidden
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2018-02-02 09:18:55 +00:00
|
|
|
= f.input :password, autofocus: true, placeholder: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'off' }
|
|
|
|
= f.input :password_confirmation, placeholder: t('simple_form.labels.defaults.confirm_new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_new_password'), :autocomplete => 'off' }
|
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('auth.set_new_password'), type: :submit
|
|
|
|
- else
|
|
|
|
= t('simple_form.labels.defaults.pam_account')
|
2016-10-03 15:38:22 +01:00
|
|
|
|
2017-05-17 14:36:56 +01:00
|
|
|
.form-footer= render 'auth/shared/links'
|