Browse Source
Disable autocomplete for email fields.
pull/193/head
Pēteris Caune
6 years ago
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2
2 changed files with
4 additions and
3 deletions
-
templates/accounts/login.html
-
templates/front/welcome.html
|
|
@ -29,7 +29,8 @@ |
|
|
|
class="form-control input-lg" |
|
|
|
name="identity" |
|
|
|
value="{{ magic_form.email.value|default:"" }}" |
|
|
|
placeholder="[email protected]"> |
|
|
|
placeholder="[email protected]" |
|
|
|
autocomplete="off"> |
|
|
|
|
|
|
|
<p id="link-instruction"> |
|
|
|
We will email you a magic sign in link. |
|
|
|
|
|
@ -139,7 +139,7 @@ |
|
|
|
type="email" |
|
|
|
class="form-control" |
|
|
|
name="identity" |
|
|
|
autocomplete="email" |
|
|
|
autocomplete="off" |
|
|
|
placeholder="Email"> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -457,7 +457,7 @@ |
|
|
|
type="email" |
|
|
|
class="form-control" |
|
|
|
name="identity" |
|
|
|
autocomplete="email" |
|
|
|
autocomplete="off" |
|
|
|
placeholder="Email"> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|