Line up submit buttons?
Posted: Fri Sep 30, 2005 5:14 pm
Everything works, but the submit buttons won't line up. Please help.

Code: Select all
<br><br>
<table align="center">
<tr>
<td>
<form action="register.php" method="post">
<b>Artist/Bandname: </b> <input type="text" size="20" maxlength="20" name="bandname"
<?php if (isset($_POST['bandname'])) { ?> value="<?php echo $_POST['bandname']; ?>" <?php } ?>/><br />
<b>Username:</b> <input type="text" size="20" maxlength="20" name="username"
<?php if (isset($_POST['username'])) { ?> value="<?php echo $_POST['username']; ?>" <?php } ?>/><br />
<b>Password: </b> <input type="password" size="20" maxlength="10" name="password" /><br />
<b>Confirm Password:</b> <input type="password" size="20" maxlength="10" name="confirmpass" /><br />
<br>
<table align="center">
<tr>
<td>
<P align = "left">
<input type="submit" name="submit" value="Register!" />
</form>
</P>
</td>
<td>
<FORM METHOD="POST" ACTION="/login_form.inc.php">
<P align = "center">
<input type="Submit" name="Submit" value="Login">
</P>
</form>
</td>
</tr>
</table>
</td>
</table