Nu krijg ik redelijk wat errors, me CSS is overings goed, 0 errors.
Ik behandel elke fout individueel. Nu ben ik bij een fout gekomen waarvan ik niet weet hoe ik hem moet fixen:
Fout:
Line 67, Column 60: document type does not allow element "form" here; missing one of "object", "applet", "map", "iframe", "ins", "del" start-tag
<form name="login" method="post" action="index.php">
✉
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
Ik heb maar 1 form op mijn index site staan, hier is de hele div met de form:
<div class="menuheader"><h3>Login</h3></div>
<div class="menucontent">
<div class="member">
<center>
<p>
<form name="login" method="post" action="index.php">
<label>Name:</label>
<br />
<input type="text" name="userid" />
<br />
<input type="password" name="password" />
<br />
<label>Password:</label>
<br />
<input type="submit" name="login" value="Login" />
</form>
</p>
<ul style="list-style-type: none;">
<li><a href="index.php?do=user_panel&page=forget_pass">Forgot Password?</a></li>
</ul>
</center>
</div>
</div>
<div class="clear"></div>
<div class="menufooter"></div>
</div>
Hoe moet ik dit oplossen?