add autocomplete attribute for login form inputs,

fix config form labels
This commit is contained in:
Arthur Lu
2023-09-07 02:44:11 +00:00
parent 2b967250f9
commit 17596ab1aa
2 changed files with 5 additions and 6 deletions

View File

@@ -24,9 +24,9 @@
<h2 class="w3-center">Proxmox VE Login</h2>
<form>
<label for="username"><b>Username</b></label>
<input class="w3-input w3-border" id="username" name="username" type="text">
<input class="w3-input w3-border" id="username" name="username" type="text" autocomplete="username">
<label for="password"><b>Password</b></label>
<input class="w3-input w3-border" id="password" name="password" type="password">
<input class="w3-input w3-border" id="password" name="password" type="password" autocomplete="current-password">
<label for="realm">Realm</label>
<select class="w3-select w3-border" id="realm" name="realm"></select>
<div class="w3-center">