Add autocomplete thingies

This commit is contained in:
Neale Pickett 2022-09-07 21:00:34 -06:00
parent 12f5bf35f6
commit 35a30f21d4
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@
<body> <body>
<h1>Log In</h1> <h1>Log In</h1>
<form action="/" method="post"> <form action="/" method="post">
<div>Username: <input name="username"></div> <div>Username: <input type="text" autocomplete="username" name="username"></div>
<div>Password: <input type="password" name="password"></div> <div>Password: <input type="password" autocomplete="current-password" name="password"></div>
<div><input type="submit" value="Log In"></div> <div><input type="submit" value="Log In"></div>
</form> </form>
<div id="error"></div> <div id="error"></div>