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

View File

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