mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-02 19:39:26 +01:00
* API/Login: using tabindex to control tab succession on/in loginscreen.
This commit is contained in:
parent
e256893d8d
commit
02eb8e410b
@ -40,16 +40,16 @@
|
||||
<!-- END remember_me_selection -->
|
||||
<tr>
|
||||
<td align="right">{lang_username}: </td>
|
||||
<td><input name="login" tablindex="1" value="{cookie}" size="30" /></td>
|
||||
<td><input name="login" tabindex="4" value="{cookie}" size="30" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">{lang_password}: </td>
|
||||
<td><input name="passwd" type="password" size="30" /></td>
|
||||
<td><input name="passwd" tabindex="5" type="password" size="30" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
<input type="submit" value=" {lang_login} " name="submitit" />
|
||||
<input tabindex="6" type="submit" value=" {lang_login} " name="submitit" />
|
||||
</td>
|
||||
</tr>
|
||||
<!-- BEGIN registration -->
|
||||
|
@ -316,7 +316,7 @@ class idots_framework extends egw_framework
|
||||
}
|
||||
$tmpl->set_var(array(
|
||||
'lang_domain' => lang('domain'),
|
||||
'select_domain' => html::select('logindomain',$_COOKIE['last_domain'],$domains,true),
|
||||
'select_domain' => html::select('logindomain',$_COOKIE['last_domain'],$domains,true,'tabindex="2"'),
|
||||
));
|
||||
}
|
||||
else
|
||||
@ -406,7 +406,7 @@ class idots_framework extends egw_framework
|
||||
$tmpl->set_var(array(
|
||||
'lang_language' => lang('Language'),
|
||||
'select_language' => html::select('lang',$GLOBALS['egw_info']['user']['preferences']['common']['lang'],
|
||||
translation::get_installed_langs(),true),
|
||||
translation::get_installed_langs(),true,'tabindex="1"'),
|
||||
));
|
||||
}
|
||||
else
|
||||
@ -431,7 +431,7 @@ class idots_framework extends egw_framework
|
||||
'1week'=> lang('1 Week'),
|
||||
'1month' => lang('1 Month'),
|
||||
'forever' => lang('Forever'),
|
||||
),true));
|
||||
),true,'tabindex="3"'));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user