Fix registration forms to display somewhat better in chrome

This commit is contained in:
Retro_Guy 2021-01-21 18:26:30 -07:00
parent e2533d7df0
commit f495caa2fb
2 changed files with 14 additions and 28 deletions

View File

@ -1,31 +1,26 @@
<html> <html>
<?php include "head.inc";?> <?php include "head.inc";?>
<table width=100% border="0" align="center" cellpadding="0" cellspacing="1"> <table border="0" align="center" cellpadding="0" cellspacing="1">
<tr> <tr>
<form name="form1" method="post" action="change.php"> <form name="form1" method="post" action="change.php">
<td> <td>
<table width="100%" border="0" cellpadding="3" cellspacing="1">
<tr> <tr>
<td colspan="3"><strong>Change Password </strong></td> <td colspan="3"><strong>Change Password </strong></td>
</tr> </tr>
<tr> <tr>
<td width="78">Username</td> <td>Username:</td>
<td width="6">:</td> <td><input name="username" type="text" id="username"></td>
<td width="294"><input name="username" type="text" id="username"></td>
</tr> </tr>
<tr> <tr>
<td>Current Password</td> <td>Current Password:</td>
<td>:</td>
<td><input name="current" type="password" id="password"></td> <td><input name="current" type="password" id="password"></td>
</tr> </tr>
<tr> <tr>
<td>New Password</td> <td>New Password:</td>
<td>:</td>
<td><input name="password" type="password" id="password"></td> <td><input name="password" type="password" id="password"></td>
</tr> </tr>
<tr> <tr>
<td>Re-enter Password</td> <td>Re-enter Password:</td>
<td>:</td>
<td><input name="password2" type="password" id="password2"></td> <td><input name="password2" type="password" id="password2"></td>
</tr> </tr>
<tr> <tr>
@ -33,10 +28,8 @@
</tr> </tr>
<tr> <tr>
<td>&nbsp;</td> <td>&nbsp;</td>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Change Password"></td> <td><input type="submit" name="Submit" value="Change Password"></td>
</tr> </tr>
</table>
</td> </td>
</form> </form>
</tr> </tr>

View File

@ -6,32 +6,27 @@ if (isset($_COOKIE["ts_limit"])) {
echo '<br/><a href="/">Return to Home Page</a>'; echo '<br/><a href="/">Return to Home Page</a>';
} else { } else {
?> ?>
<table width=100% border="0" align="center" cellpadding="0" cellspacing="1"> <table border="0" align="center" cellpadding="0" cellspacing="1">
<tr> <tr>
<form name="form1" method="post" action="rsusers.php"> <form name="form1" method="post" action="rsusers.php">
<td> <td>
<table width="100%" border="0" cellpadding="3" cellspacing="1">
<tr> <tr>
<td colspan="3"><strong>Register Username </strong></td> <td><strong>Register Username </strong></td>
</tr> </tr>
<tr> <tr>
<td width="78">Username</td> <td>Username:</td>
<td width="6">:</td> <td><input name="username" type="text" id="username"></td>
<td width="294"><input name="username" type="text" id="username"></td>
</tr> </tr>
<tr> <tr>
<td width="78">Email</td> <td>Email:</td>
<td width="6">:</td> <td><input name="user_email" type="text" id="user_email"></td>
<td width="294"><input name="user_email" type="text" id="user_email"></td>
</tr> </tr>
<tr> <tr>
<td>Password</td> <td>Password:</td>
<td>:</td>
<td><input name="password" type="password" id="password"></td> <td><input name="password" type="password" id="password"></td>
</tr> </tr>
<tr> <tr>
<td>Re-enter Password</td> <td>Re-enter Password:</td>
<td>:</td>
<td><input name="password2" type="password" id="password2"></td> <td><input name="password2" type="password" id="password2"></td>
</tr> </tr>
<tr> <tr>
@ -39,14 +34,12 @@ if (isset($_COOKIE["ts_limit"])) {
</tr> </tr>
<tr> <tr>
<td>&nbsp;</td> <td>&nbsp;</td>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Create"></td> <td><input type="submit" name="Submit" value="Create"></td>
</tr> </tr>
<tr><td><a href="changepw.php">Change current password</a></td></tr> <tr><td><a href="changepw.php">Change current password</a></td></tr>
<tr><td> <tr><td>
<td></td><td></td> <td></td><td></td>
</td></tr> </td></tr>
</table>
</td> </td>
</form> </form>
</tr> </tr>