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
|
|
|
|
2020-08-12 11:11:15 +01:00
|
|
|
= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put, novalidate: false }) do |f|
|
2018-02-10 16:09:44 +00:00
|
|
|
= render 'shared/error_messages', object: resource
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2018-03-04 09:00:24 +00:00
|
|
|
- if !use_seamless_external_login? || resource.encrypted_password.present?
|
2018-02-10 16:09:44 +00:00
|
|
|
= f.input :reset_password_token, as: :hidden
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2018-09-18 15:45:58 +01:00
|
|
|
.fields-group
|
2020-08-12 11:11:15 +01:00
|
|
|
= 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', :minlength => User.password_length.first, :maxlength => User.password_length.last }, required: true
|
2018-09-18 15:45:58 +01:00
|
|
|
.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 09:18:55 +00:00
|
|
|
|
2018-02-10 16:09:44 +00:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('auth.set_new_password'), type: :submit
|
|
|
|
- else
|
2018-02-28 18:04:53 +00:00
|
|
|
%p.hint= t('users.seamless_external_login')
|
2016-10-03 15:38:22 +01:00
|
|
|
|
2017-05-17 14:36:56 +01:00
|
|
|
.form-footer= render 'auth/shared/links'
|