9f4930ec11
Fixes #20067 Our password autocomplete hints were “off” but that does not prevent current browsers from trying to autocomplete them anyway, so use `current-password` and `new-password` so they don't put a newly-generated password in a password confirmation prompt, or the old password for a password renewal prompt.
15 lines
534 B
Text
15 lines
534 B
Text
- content_for :page_title do
|
|
= t('challenge.prompt')
|
|
|
|
= simple_form_for @challenge, url: request.get? ? auth_challenge_path : '' do |f|
|
|
= f.input :return_to, as: :hidden
|
|
|
|
.field-group
|
|
= f.input :current_password, wrapper: :with_block_label, input_html: { :autocomplete => 'current-password', :autofocus => true }, label: t('challenge.prompt'), required: true
|
|
|
|
.actions
|
|
= f.button :button, t('challenge.confirm'), type: :submit
|
|
|
|
%p.hint.subtle-hint= t('challenge.hint_html')
|
|
|
|
.form-footer= render 'auth/shared/links'
|