I added a quick login form to my phpBB3 forum (based on SubSilver2 theme).
It works great with Firefox, but with Internet Explorer it is not working at all.
Could anyone please give me a hand as to what the issue might be?
Thanks
Code: Select all
<form action="/ucp.php?mode=login" method="post">
<table width="130" style="height: 50" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="130" height="15" align="center"><input maxlength="25" name="username" type="text" value="Username" /></td>
</tr>
<tr>
<td width="130" height="15" align="center"><input maxlength="25" name="password" type="password" value="Password" /></td>
</tr>
<tr>
<td width="130" height="15" align="center"><input type="image" value="submit" name="login" src="/login.png" alt="Login" title="Login" /></td>
</tr>
</table>
</form>