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