layout fixes for Konqueror,

fixed profile selection on error message
This commit is contained in:
Roland Gruber 2004-02-08 13:33:15 +00:00
parent fb2268d53e
commit 40449dd65f
1 changed files with 19 additions and 17 deletions

View File

@ -132,23 +132,23 @@ function display_LoginPage($config_object,$profile)
<form action="login.php" method="post"> <form action="login.php" method="post">
<table width="650" align="center" border="2" rules="none" bgcolor="white"> <table width="650" align="center" border="2" rules="none" bgcolor="white">
<tr> <tr>
<td width="70" rowspan="9"> <td style="border-style:none" width="70" rowspan="9">
<img src="../graphics/lam.png" alt="Logo"> <img src="../graphics/lam.png" alt="Logo">
</td> </td>
<td height="70" colspan="2" align="center"> <td style="border-style:none" height="70" colspan="2" align="center">
<font color="darkblue"><b><big><?php echo _("Enter Username and Password for Account"); ?></big></b></font> <font color="darkblue"><b><big><?php echo _("Enter Username and Password for Account"); ?></big></b></font>
</td> </td>
<td rowspan="9" width="70"> <td style="border-style:none" rowspan="9" width="70">
&nbsp; &nbsp;
</td> </td>
</tr> </tr>
<tr> <tr>
<td height="35" align="right"><b> <td style="border-style:none" height="35" align="right"><b>
<?php <?php
echo _("Username") . ":"; echo _("Username") . ":";
?> ?>
</b>&nbsp;&nbsp;</td> </b>&nbsp;&nbsp;</td>
<td height="35" align="left"> <td style="border-style:none" height="35" align="left">
<select name="username" size="1"> <select name="username" size="1">
<?php <?php
$admins = $config_object->get_Admins(); $admins = $config_object->get_Admins();
@ -164,12 +164,12 @@ function display_LoginPage($config_object,$profile)
</td> </td>
</tr> </tr>
<tr> <tr>
<td height="35" align="right"><b> <td style="border-style:none" height="35" align="right"><b>
<?php <?php
echo _("Password") . ":"; echo _("Password") . ":";
?> ?>
</b>&nbsp;&nbsp;</td> </b>&nbsp;&nbsp;</td>
<td height="35" align="left"> <td style="border-style:none" height="35" align="left">
<input type="password" name="passwd"> <input type="password" name="passwd">
</td> </td>
</tr> </tr>
@ -187,12 +187,12 @@ function display_LoginPage($config_object,$profile)
else else
{ {
?> ?>
<td align="right"><b> <td style="border-style:none" align="right"><b>
<?php <?php
echo _("Your Language") . ":"; echo _("Your Language") . ":";
?> ?>
</b>&nbsp;&nbsp;</td> </b>&nbsp;&nbsp;</td>
<td height="35" align="left"> <td style="border-style:none" height="35" align="left">
<select name="language" size="1"> <select name="language" size="1">
<?php <?php
for($i = 0; $i < count($languages); $i++) { for($i = 0; $i < count($languages); $i++) {
@ -216,12 +216,12 @@ function display_LoginPage($config_object,$profile)
?> ?>
</tr> </tr>
<tr> <tr>
<td height="50" colspan="2" align="center"> <td style="border-style:none" height="50" colspan="2" align="center">
<input name="checklogin" type="submit" value="<?php echo _("Login"); ?>"> <input name="checklogin" type="submit" value="<?php echo _("Login"); ?>">
</td> </td>
</tr> </tr>
<tr> <tr>
<td height="50" colspan="2" align="center"> <td style="border-style:none" height="50" colspan="2" align="center">
<?php <?php
if($error_message != "") { if($error_message != "") {
echo "<font color=\"red\"><b>" . $error_message . "</b></font>"; echo "<font color=\"red\"><b>" . $error_message . "</b></font>";
@ -230,7 +230,9 @@ function display_LoginPage($config_object,$profile)
</td> </td>
</tr> </tr>
<tr> <tr>
<td height="30" colspan="2"><b> <td style="border-style:none" height="30" colspan="2">
<hr>
<b>
<?php <?php
echo _("LDAP server") . ": "; echo _("LDAP server") . ": ";
?></b> ?></b>
@ -238,16 +240,16 @@ function display_LoginPage($config_object,$profile)
</td> </td>
</tr> </tr>
<tr> <tr>
<td height="30"><b> <td style="border-style:none" height="30"><b>
<?php <?php
echo _("Configuration profile") . ": "; echo _("Configuration profile") . ": ";
if(!$_POST['profile']) { if(!$_POST['profileChange']) {
$_POST['profile'] = $profile; $_POST['profile'] = $_SESSION['config']->file;
} }
?></b> ?></b>
<?php echo $_POST['profile']; ?> <?php echo $_POST['profile']; ?>
</td> </td>
<td height="30" align="right"> <td style="border-style:none" height="30" align="right">
<select name="profile" size="1"> <select name="profile" size="1">
<?php <?php
for($i=0;$i<count($profiles);$i++) { for($i=0;$i<count($profiles);$i++) {
@ -261,7 +263,7 @@ function display_LoginPage($config_object,$profile)
</td> </td>
</tr> </tr>
<tr> <tr>
<td height="10" colspan="2"></td> <td style="border-style:none" height="10" colspan="2"></td>
</tr> </tr>
</table> </table>
</form> </form>