summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2023-08-25 12:39:38 +0300
committerMaxim Devaev <[email protected]>2023-08-25 12:39:41 +0300
commit36df38972c4b6c39f026ed6633982295a79076bf (patch)
treea0c12212d0a0f5eea3b7915293dc557efd4ca8bb /web
parentbb4349e64625ee39869c7e7fb76f5b50e93deeb5 (diff)
web: improved autocapitalize=off
Diffstat (limited to 'web')
-rw-r--r--web/login/index.html2
-rw-r--r--web/login/index.pug4
2 files changed, 3 insertions, 3 deletions
diff --git a/web/login/index.html b/web/login/index.html
index b955c16d..0e3718eb 100644
--- a/web/login/index.html
+++ b/web/login/index.html
@@ -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>
diff --git a/web/login/index.pug b/web/login/index.pug
index 712f2ee8..5ee3855b 100644
--- a/web/login/index.pug
+++ b/web/login/index.pug
@@ -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")]