codice:
<form action="" method="post" id="form_login" >
Username</td><td> <input class="input_style" name="username_lg" type="text" size="20" /></td></tr>
<tr><td>Password</td> <td><input name="password_lg" class="input_style" type="password" size="20" />
</td></tr></table>
<input type="checkbox" value="1" name="ricordami" id="check" checked="checked" /> <label for="check">Ricordami</label> 
<input type="submit" class="submit_style" value="Entra" /></form>


Mi sto impazzendo perchè succede questa cosa: alla validazione della pagine mi esce un unico errore così

codice:
Line 43, Column 12: end tag for "form" omitted, but OMITTAG NO was specified.

Ok allora cambio in:

codice:
<form action="" method="post" id="form_login" />
Username</td><td> <input class="input_style" name="username_lg" type="text" size="20" /></td></tr>
<tr><td>Password</td> <td><input name="password_lg" class="input_style" type="password" size="20" />
</td></tr></table>
<input type="checkbox" value="1" name="ricordami" id="check" checked="checked" /> <label for="check">Ricordami</label> 
<input type="submit" class="submit_style" value="Entra" /></form>
ed esce:

codice:
Line 46, Column 64: end tag for element "form" which is not open.

…="submit" class="submit_style" value="Entra" /></form>
Cos'è una presa in giro? O uno o l'altro?
Mi aiutate a capire cosa c'è che non va che io non vedo?