Set autocapitalize=off for the password prompt.

master
Ethan Dalool 2020-11-04 17:34:20 -08:00
parent 90ac6c87ac
commit 72aa05a155
1 changed files with 1 additions and 1 deletions

View File

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