The form closing tag is overlapping two closing div tags - the form closing needs to be moved to just after the .forgotp div :
Code:
<div class="interface">
<form action="" method="post">
<div class="usernamebg">
<div class="username">Username</div>
<div class="textfield">
<input name="username" class="field" type="text" />
</div>
</div>
<div class="usernamebg">
<div class="username">Password</div>
<div class="textfield">
<input name="password" class="field" type="password" />
</div>
</div>
<input type="image" name="loginbutton" img src="images/submit.jpg" width="67" height="25" border="0" />
<div class="forgotp"><a href="forgot.php"> Forgot password? Click here</a></div>
</form>
</div>
</div>
Bookmarks