Form Input not taking input
This worked before, but page crashed and I had to rewrite code and now the code won't accept input. The input fields are there, but can't be clicked or typed in in any browser. Also, the submit button does not depress. The form is not inside any divs or anything, just inside the body. Any ideas?
Code:
<form action="login.php" method="POST">
<table style="margin: 100px;">
<col width="100">
<col width="200">
<tr>
<td><h4>First Name</h4></td>
<td><input type="text" name="firstname" /></td>
</tr>
<tr>
<td><h4>Last Name</h4></td>
<td><input type="text" name="lastname" /></td>
</tr>
<tr>
<td><h4>Email</h4></td>
<td><input type="email" name="email" /></td>
</tr>
<tr>
<td><h4>Repeat Email</h4></td>
<td><input type="email" name="verifyemail" /></td>
</tr>
<tr>
<td><h4>Password</h4></td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td><h4>Repeat Password</h4></td>
<td><input type="password" name="verifypassword" /></td>
</tr>
</table>
<input type="submit" value="Submit">
</form>