web: improved autocapitalize=off

This commit is contained in:
Maxim Devaev 2023-08-25 12:39:38 +03:00
parent bb4349e646
commit 36df38972c
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@
<tr>
<td>Password:&nbsp;</td>
<td>
<input type="password" id="passwd-input">
<input type="password" id="passwd-input" autocapitalize="off">
</td>
</tr>
<tr>

View File

@ -12,10 +12,10 @@ block body
table
tr
td Username:&nbsp;
td #[input(type="text" id="user-input")]
td #[input(type="text" id="user-input" autocapitalize="off")]
tr
td Password:&nbsp;
td #[input(type="password" id="passwd-input")]
td #[input(type="password" id="passwd-input" autocapitalize="off")]
tr
td 2FA code:&nbsp;
td #[input(type="text" id="code-input" placeholder="if enabled")]