summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base
diff options
context:
space:
mode:
authorViktor Tsvetkov <zwetvik@gmail.com>2021-12-24 12:36:35 +0100
committerJo-Philipp Wich <jo@mein.io>2022-10-15 14:31:47 +0200
commit3e9d9a9dbb045c24eb93643838f8e8e3b9074e4b (patch)
tree44a3a6bb932d4c93217b305a27333aaf30d7a8fd /modules/luci-base
parent1586ac49f86b27dad8049a7c1dcf3566d10b3193 (diff)
sysauth: add autocomplete and id attributes to login inputs
this let browser automatically fill according to HTML spec for input elements. luci-theme-bootstrap and luci-base are affected. Signed-off-by: Viktor Tsvetkov <zwetvik@gmail.com> [indentation fix] Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base')
-rw-r--r--modules/luci-base/luasrc/view/sysauth.htm8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/luci-base/luasrc/view/sysauth.htm b/modules/luci-base/luasrc/view/sysauth.htm
index acd5ff7e38..797c87a72e 100644
--- a/modules/luci-base/luasrc/view/sysauth.htm
+++ b/modules/luci-base/luasrc/view/sysauth.htm
@@ -20,15 +20,15 @@
</div>
<div class="cbi-section"><div class="cbi-section-node">
<div class="cbi-value">
- <label class="cbi-value-title"><%:Username%></label>
+ <label class="cbi-value-title" for="luci_username"><%:Username%></label>
<div class="cbi-value-field">
- <input class="cbi-input-text" type="text" name="luci_username" value="<%=duser%>" />
+ <input class="cbi-input-text" type="text" name="luci_username" id="luci_username" autocomplete="username" value="<%=duser%>" />
</div>
</div>
<div class="cbi-value cbi-value-last">
- <label class="cbi-value-title"><%:Password%></label>
+ <label class="cbi-value-title" for="luci_password"><%:Password%></label>
<div class="cbi-value-field">
- <input class="cbi-input-text" type="password" name="luci_password" />
+ <input class="cbi-input-text" type="password" name="luci_password" id="luci_password" autocomplete="current-password"/>
</div>
</div>
</div></div>