more login tweaks

This commit is contained in:
Andrew Dolgov 2006-08-19 08:14:46 +01:00
parent 1d3a17c71e
commit 104ddfe055
2 changed files with 10 additions and 4 deletions

View File

@ -118,14 +118,14 @@ window.onload = init;
<?php } ?> <?php } ?>
<table> <table>
<tr><td align="right">Login:</td> <tr><td align="right">Login:</td>
<td><input name="login"></td></tr> <td align="right"><input name="login"></td></tr>
<tr><td align="right">Password:</td> <tr><td align="right">Password:</td>
<td><input type="password" name="password"></td></tr> <td align="right"><input type="password" name="password"></td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<input type="checkbox" name="remember_me" id="remember_me"> <input type="checkbox" name="remember_me" id="remember_me">
<label for="remember_me">Remember me on this computer</label> <label for="remember_me">Remember me on this computer</label>
</td></tr> </td></tr>
<tr><td colspan="2" align="right"> <tr><td colspan="2" align="right" class="innerLoginCell">
<input type="submit" class="button" value="Login"> <input type="submit" class="button" value="Login">
<input type="hidden" name="action" value="login"> <input type="hidden" name="action" value="login">
<input type="hidden" name="rt" value="<?php echo $_GET['rt'] ?>"> <input type="hidden" name="rt" value="<?php echo $_GET['rt'] ?>">

View File

@ -1201,7 +1201,13 @@ table.loginForm2 .loginBottom a {
color : #909090; color : #909090;
} }
.loginError { table.loginForm2 .loginError {
color : red; color : red;
margin : 0.5em; margin : 0.5em;
} }
table.loginForm2 .innerLoginCell {
padding-top : 0.5em;
}