This below code is forbidden in XHTML 1.1 strict mode:
<form method="post" action="index">
<input id="_method" name="_method" type="hidden" value="" />
</form>
if you want it to be valid you need to put a div (or p, etc..) like:
<form method="post" action="index">
<div>
<input id="_method" name="_method" type="hidden" value="" />
</div>
</form>
Why this is make sense at all?