Disable autocomplete on password field.

master
Ethan Dalool 2020-10-10 08:42:48 -07:00
parent 032c05abb0
commit 91cf3af63b
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ PASSWORD_PROMPT_HTML = '''
<style type="text/css">Body {{font-family:Consolas}}</style> <style type="text/css">Body {{font-family:Consolas}}</style>
<form action="/password" method="post"> <form action="/password" method="post">
<input type="text" name="password" placeholder="password"/> <input type="text" name="password" placeholder="password" autocomplete="off"/>
<input type="hidden" name="goto" value="{goto}"/> <input type="hidden" name="goto" value="{goto}"/>
<input type="submit" value="Submit"/> <input type="submit" value="Submit"/>
</form> </form>