show only fieldsets with input

This commit is contained in:
Roland Gruber 2006-02-03 15:37:59 +00:00
parent 714b756bb2
commit b6868b503a
1 changed files with 56 additions and 54 deletions

View File

@ -168,6 +168,7 @@ echo ("<form action=\"conftypes.php\" method=\"post\">\n");
echo "<h1 align=\"center\">" . _("Account type selection") . "</h1>";
// show available types
if (sizeof($availableTypes) > 0) {
echo "<fieldset><legend><b>" . _("Available account types") . "</b></legend>\n";
echo "<table>\n";
for ($i = 0; $i < sizeof($availableTypes); $i++) {
@ -181,8 +182,10 @@ echo "</table>\n";
echo "</fieldset>\n";
echo "<p><br><br></p>";
}
// show active types
if (sizeof($activeTypes) > 0) {
echo "<fieldset><legend><b>" . _("Active account types") . "</b></legend><br>\n";
for ($i = 0; $i < sizeof($activeTypes); $i++) {
echo "<fieldset class=\"" . $activeTypes[$i] . "edit\">\n";
@ -224,9 +227,8 @@ for ($i = 0; $i < sizeof($activeTypes); $i++) {
echo "</fieldset><br>\n";
}
echo "</fieldset>\n";
echo "<p><br><br></p>\n";
}
// submit and abort button
echo "<p>";