mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 10:29:49 -04:00
Convert all instances of autocomplete to off
`on` or `off` are the only valid values. > The attribute, if present, must have a value that is an ASCII > case-insensitive match for the string "off", or a single token that > is an ASCII case-insensitive match for the string "on" – https://www.w3.org/TR/html5/forms.html#autofilling-form-controls:-the-autocomplete-attribute
This commit is contained in:
@@ -12,7 +12,7 @@ Create an account
|
||||
<div class="column-two-thirds">
|
||||
<h1 class="heading-large">Create an account</h1>
|
||||
<p>Your account will be created with this email: {{email_address}}</p>
|
||||
<form method="post" autocomplete="nope">
|
||||
<form method="post" autocomplete="off">
|
||||
{{ textbox(form.name, width='3-4') }}
|
||||
{{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }}
|
||||
{{ textbox(form.password, hint="At least 8 characters", width='3-4') }}
|
||||
|
||||
Reference in New Issue
Block a user