improved tab order
This commit is contained in:
parent
6f60e64e42
commit
eb6128bdfc
|
@ -126,16 +126,20 @@ for ($m = 0; $m < sizeof($modules); $m++) {
|
|||
echo ("<table border=0>\n");
|
||||
echo ("<tr>\n");
|
||||
echo ("<td><b>" . _("Profile name") . ":</b></td>\n");
|
||||
echo ("<td><input type=\"text\" name=\"profname\" value=\"" . $_GET['edit'] . "\"></td>\n");
|
||||
$tabindex++;
|
||||
echo ("<td><input tabindex=\"$tabindex\" type=\"text\" name=\"profname\" value=\"" . $_GET['edit'] . "\"></td>\n");
|
||||
echo ("<td><a href=\"../help.php?HelpNumber=360\" target=\"lamhelp\">" . _("Help") . "</a></td>\n");
|
||||
echo ("</tr>\n");
|
||||
echo ("<tr>\n");
|
||||
echo ("<td colspan=2> </td>");
|
||||
echo ("</tr>\n");
|
||||
echo ("<tr>\n");
|
||||
echo ("<td><input type=\"submit\" name=\"submit\" value=\"" . _("Save") . "\"></td>\n");
|
||||
echo ("<td><input type=\"reset\" name=\"reset\" value=\"" . _("Reset") . "\">\n");
|
||||
echo ("<input type=\"submit\" name=\"abort\" value=\"" . _("Abort") . "\"></td>\n");
|
||||
$tabindex++;
|
||||
echo ("<td><input tabindex=\"$tabindex\" type=\"submit\" name=\"submit\" value=\"" . _("Save") . "\"></td>\n");
|
||||
$tabindex++;
|
||||
echo ("<td><input tabindex=\"$tabindex\" type=\"reset\" name=\"reset\" value=\"" . _("Reset") . "\">\n");
|
||||
$tabindex++;
|
||||
echo ("<input tabindex=\"$tabindex\" type=\"submit\" name=\"abort\" value=\"" . _("Abort") . "\"></td>\n");
|
||||
echo ("<td> </td>");
|
||||
echo ("</tr>\n");
|
||||
echo ("</table>\n");
|
||||
|
|
Loading…
Reference in New Issue