prevent some inputs from autocompleting
This commit is contained in:
parent
738a8c53fa
commit
93077c083f
@ -36,7 +36,7 @@ block body
|
||||
label(for="mcinclude") Include Minecraft Username
|
||||
input(id="mcinclude" type="checkbox")
|
||||
.mcuname(style="display: none;")
|
||||
input(id="mcusername")
|
||||
input(id="mcusername", autocomplete="off")
|
||||
.buttoncont
|
||||
a.button.donate(name="submit", onclick="$(this).closest('form').submit()")
|
||||
i.fa.fa-fw.fa-paypal
|
||||
|
@ -24,6 +24,6 @@ block body
|
||||
label(for="password") New Password
|
||||
input(type="password", name="password", id="password")
|
||||
label(for="password_repeat") Repeat New Password
|
||||
input(type="password", name="password_repeat", id="password_repeat")
|
||||
input(type="password", name="password_repeat", id="password_repeat", autocomplete="off")
|
||||
div#repeatcheck(style="display: none")
|
||||
input(type="submit", value="Change")
|
||||
|
@ -26,7 +26,7 @@ block body
|
||||
label(for="password") Password
|
||||
input(type="password", name="password", id="password")
|
||||
label(for="password_repeat") Repeat Password
|
||||
input(type="password", name="password_repeat", id="password_repeat")
|
||||
input(type="password", name="password_repeat", id="password_repeat", autocomplete="off")
|
||||
div#repeatcheck(style="display: none")
|
||||
if recaptcha
|
||||
script(src='https://www.google.com/recaptcha/api.js')
|
||||
|
@ -18,5 +18,5 @@ block body
|
||||
form#loginForm(method="POST", action="")
|
||||
input(type="hidden", name="csrf", value=csrf)
|
||||
label(for="code") Code
|
||||
input(type="text", name="code", id="code")
|
||||
input(type="text", name="code", id="code", autocomplete="off")
|
||||
input(type="submit", value="Log in")
|
||||
|
@ -19,7 +19,7 @@ block body
|
||||
form#totpForm(method="POST", action="")
|
||||
input(type="hidden", name="csrf", value=csrf)
|
||||
label(for="code") Enter the Code
|
||||
input(type="text", name="code", id="code")
|
||||
input(type="text", name="code", id="code", autocomplete="off")
|
||||
input(type="submit", value="Enable Now")
|
||||
.right
|
||||
h3 How to use
|
||||
|
Reference in New Issue
Block a user