Change username input tag's type attribute from "username" to "text"
"username" is not a valid value for the type attribute in an input tag, which causes it to fail formal validation. Probably would never *really* affect anything, but...you know...pull/121/head
parent
2bbd262876
commit
0f2ddd9abe
|
@ -10,7 +10,7 @@
|
|||
<body>
|
||||
<h1>Captive Portal</h1>
|
||||
<form method="post">
|
||||
Username: <input type="username" name="username"><br>
|
||||
Username: <input type="text" name="username"><br>
|
||||
Password: <input type="password" name="password"><br>
|
||||
<input type="submit" value="Log in">
|
||||
</form>
|
||||
|
|
Loading…
Reference in New Issue