tabindex added

This commit is contained in:
duergner 2004-08-17 14:09:56 +00:00
parent 985a142320
commit dc328d7d5d
1 changed files with 6 additions and 6 deletions

View File

@ -153,7 +153,7 @@ function display_LoginPage($config_object,$profile)
?> ?>
</b>&nbsp;&nbsp;</td> </b>&nbsp;&nbsp;</td>
<td style="border-style:none" height="35" align="left"> <td style="border-style:none" height="35" align="left">
<select name="username" size="1"> <select name="username" size="1" tabindex="0">
<?php <?php
$admins = $config_object->get_Admins(); $admins = $config_object->get_Admins();
for($i = 0; $i < count($admins); $i++) { for($i = 0; $i < count($admins); $i++) {
@ -174,7 +174,7 @@ function display_LoginPage($config_object,$profile)
?> ?>
</b>&nbsp;&nbsp;</td> </b>&nbsp;&nbsp;</td>
<td style="border-style:none" height="35" align="left"> <td style="border-style:none" height="35" align="left">
<input type="password" name="passwd"> <input type="password" name="passwd" tabindex="1">
</td> </td>
</tr> </tr>
<tr> <tr>
@ -197,7 +197,7 @@ function display_LoginPage($config_object,$profile)
?> ?>
</b>&nbsp;&nbsp;</td> </b>&nbsp;&nbsp;</td>
<td style="border-style:none" height="35" align="left"> <td style="border-style:none" height="35" align="left">
<select name="language" size="1"> <select name="language" size="1" tabindex="2">
<?php <?php
for($i = 0; $i < count($languages); $i++) { for($i = 0; $i < count($languages); $i++) {
if($languages[$i]["default"] == "YES") { if($languages[$i]["default"] == "YES") {
@ -222,7 +222,7 @@ function display_LoginPage($config_object,$profile)
<tr> <tr>
<td style="border-style:none" height="50" colspan="2" align="center"> <td style="border-style:none" height="50" colspan="2" align="center">
<input name="checklogin" type="hidden" value="<?php echo _('Login'); ?>"> <input name="checklogin" type="hidden" value="<?php echo _('Login'); ?>">
<input type="submit" value="<?php echo _("Login"); ?>"> <input type="submit" value="<?php echo _("Login"); ?>" tabindex="3">
</td> </td>
</tr> </tr>
<tr> <tr>
@ -255,7 +255,7 @@ function display_LoginPage($config_object,$profile)
<?php echo $_POST['profile']; ?> <?php echo $_POST['profile']; ?>
</td> </td>
<td style="border-style:none" height="30" align="right"> <td style="border-style:none" height="30" align="right">
<select name="profile" size="1"> <select name="profile" size="1" tabindex="4">
<?php <?php
for($i=0;$i<count($profiles);$i++) { for($i=0;$i<count($profiles);$i++) {
?> ?>
@ -264,7 +264,7 @@ function display_LoginPage($config_object,$profile)
} }
?> ?>
</select> </select>
<input name="profileChange" type="submit" value="<?php echo _("Change Profile"); ?>"> <input name="profileChange" type="submit" value="<?php echo _("Change Profile"); ?>" tabindex="5">
</td> </td>
</tr> </tr>
<tr> <tr>