Add the autofocus attribute to the username field

With the `autofocus` attribute, the field has the focus when the page is loaded. This mean that you don't need to click in the field to start writing your username.
This commit is contained in:
Loïc Damien 2016-08-31 13:51:06 +02:00 committed by GitHub
parent eaaf1983a5
commit c9f16d0014

View file

@ -2,7 +2,7 @@
<form class="login-form" name="input" action="" method="post">
<div class="form-group">
<label class="icon icon-user" for="user"><span class="element-invisible">{{t_username}}</span></label>
<input id="user" type="text" name="user" placeholder="{{t_username}}" class="form-text" required>
<input id="user" type="text" name="user" placeholder="{{t_username}}" class="form-text" autofocus required>
</div>
<div class="form-group">
<label class="icon icon-lock" for="password"><span class="element-invisible">{{t_password}}</span></label>