mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
Merge pull request #2068 from alphagov/2fa-input
Improve 2fa code input
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
|
||||
<p>We’ve sent you a text message with a security code.</p>
|
||||
|
||||
<form autocomplete="off" method="post" class="extra-tracking">
|
||||
<form autocomplete="off" method="post" class="extra-tracking" novalidate>
|
||||
{{ textbox(
|
||||
form.sms_code,
|
||||
width='5em',
|
||||
|
||||
@@ -15,8 +15,12 @@
|
||||
<p>
|
||||
We’ve sent a security code to your new {{ thing }}.
|
||||
</p>
|
||||
<form method="post">
|
||||
{{ textbox(form_field) }}
|
||||
<form method="post" autocomplete="off" novalidate>
|
||||
{{ textbox(
|
||||
form_field,
|
||||
width='5em',
|
||||
autofocus=True
|
||||
) }}
|
||||
{{ page_footer(
|
||||
'Confirm',
|
||||
destructive=destructive,
|
||||
|
||||
Reference in New Issue
Block a user