mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
N°2311 login page : add autofocus attribute to the id field
https://caniuse.com/#feat=autofocus
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
|
||||
<div>
|
||||
<label for="user">{{ 'UI:Login:UserNamePrompt'|dict_s }}</label>
|
||||
<input id="user" type="text" name="auth_user" tabindex="1" value="{{ aData.sAuthUser }}" />
|
||||
<input id="user" type="text" name="auth_user" tabindex="1" value="{{ aData.sAuthUser }}" autofocus>
|
||||
</div>
|
||||
<div>
|
||||
<label for="pwd">{{ 'UI:Login:PasswordPrompt'|dict_s }}</label>
|
||||
<input id="pwd" type="password" name="auth_pwd" tabindex="2" autocomplete="off" value="{{ aData.sAuthPwd }}" />
|
||||
<input id="pwd" type="password" name="auth_pwd" tabindex="2" autocomplete="off" value="{{ aData.sAuthPwd }}">
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user