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> <tr>
<td>Password:&nbsp;</td> <td>Password:&nbsp;</td>
<td> <td>
<input type="password" id="passwd-input"> <input type="password" id="passwd-input" autocapitalize="off">
</td> </td>
</tr> </tr>
<tr> <tr>

View File

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