mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-01-11 15:03:23 -05:00
add autocomplete attributes to login form
The Chrome console was nagging about this, linking to here: https://www.chromium.org/developers/design-documents/create-amazing-password-forms I'm not sure it makes any real difference (autocomplete already worked), but it's easy enough to do.
This commit is contained in:
parent
aa25a85477
commit
fc77db0fc9
@ -81,11 +81,13 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td><label for="login-username">Username:</label></td>
|
||||
<td><input type="text" id="login-username" name="username"></td>
|
||||
<td><input type="text" id="login-username" name="username"
|
||||
autocomplete="username"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="login-password">Password:</label></td>
|
||||
<td><input type="password" id="login-password" name="password"></td>
|
||||
<td><input type="password" id="login-password" name="password"
|
||||
autocomplete="current-password"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
|
Loading…
Reference in New Issue
Block a user