Log in

View Full Version : Form Input not taking input



taem
11-16-2015, 05:27 AM
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?


<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>

james438
11-16-2015, 05:32 AM
seems to be working fine here.

taem
11-16-2015, 06:24 AM
Check it out: http://mmilescorp.com/register.php

It's just a very, very basic design at this point, but not functioning with Firefox, Chrome, or IE.

james438
11-16-2015, 07:04 AM
Just a quick observation: when I remove position:fixed; from #stage the form seems to work just fine.

taem
11-16-2015, 11:46 PM
Just a quick observation: when I remove position:fixed; from #stage the form seems to work just fine.

Indeed, thank you! Not sure what changing that will break however, so will have to check rest of css pages. Thanks for the detective work my friend!