Change username input type to "text"

<input type="username"> isn't allowed according to the spec and causes problems with autofill in Firefox.
This commit is contained in:
Miha Frangez
2017-10-10 22:30:20 +02:00
committed by GitHub
parent c2ea20a87a
commit f5250f04c5

View File

@@ -35,7 +35,7 @@
<label for="username_input">Username:</label>
<input
id="username_input"
type="username"
type="text"
autocapitalize="off"
autocorrect="off"
class="form-control"