From 36df38972c4b6c39f026ed6633982295a79076bf Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Fri, 25 Aug 2023 12:39:38 +0300 Subject: [PATCH] web: improved autocapitalize=off --- web/login/index.html | 2 +- web/login/index.pug | 4 ++-- 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 @@ Password:  - + 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:  - td #[input(type="text" id="user-input")] + td #[input(type="text" id="user-input" autocapitalize="off")] tr td Password:  - td #[input(type="password" id="passwd-input")] + td #[input(type="password" id="passwd-input" autocapitalize="off")] tr td 2FA code:  td #[input(type="text" id="code-input" placeholder="if enabled")]