Add some hints for mobile users
Added hints to html to prevent mobile browsers from capitalizing or autocorrecting usersnames on the login page.
This commit is contained in:
parent
25fa8d9f0c
commit
709a5c9bad
|
@ -16,7 +16,7 @@
|
|||
<form action="/_login" method="post" enctype="multipart/form-data">
|
||||
<fieldset>
|
||||
<label for="user">Name:</label>
|
||||
<input type="text" name="user" id="user" placeholder="name">
|
||||
<input type="text" name="user" id="user" placeholder="name" autocorrect="off" autocapitalize="none">
|
||||
<label for="pass">Passfile:</label>
|
||||
<input type="file" name="pass" id="pass">
|
||||
<input type="submit" value="Log In"/>
|
||||
|
|
Loading…
Reference in New Issue