diff options
author | Karson Miller <[email protected]> | 2023-08-25 02:37:35 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2023-08-25 12:37:35 +0300 |
commit | bb4349e64625ee39869c7e7fb76f5b50e93deeb5 (patch) | |
tree | c238c84c5eb68eda8f1ffaaee8234a8df6efc3bc /web | |
parent | 21eddbde1c11961d7fb958422d6dd72b94c33375 (diff) |
Turn off auto capitalize on the username input field on the main login page. (#143)
Diffstat (limited to 'web')
-rw-r--r-- | web/login/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/login/index.html b/web/login/index.html index 2917eefd..b955c16d 100644 --- a/web/login/index.html +++ b/web/login/index.html @@ -51,7 +51,7 @@ <tr> <td>Username: </td> <td> - <input type="text" id="user-input"> + <input type="text" id="user-input" autocapitalize="off"> </td> </tr> <tr> |