<td><input type="submit" name="anade_peli" value="Añadir"></td> <td><input type="reset" value="Borrar"></td> </tr> </table> </form> <form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?> " method="POST"> <table class="login"> <th colspan="2">Añade nuevo género</th> <tr> <td><label for="nombre_genero">Nombre</label></td> <td><input type="text" name="nombre_genero" <?php recordar("nombre_genero"); ?> > <span class="errorform"><?php mostrar_error("nombre_genero", $errores); ?> </span></td> </tr> <tr> <td><input type="submit" name="anade_genero" value="Añadir"></td> <td><input type="reset" value="Borrar"></td> </tr> </form>
<td><label for="pass">Escriba su contraseña</label></td> <td><input type="password" name="pass1" value=""> <span class="errorform"><?php mostrar_error("pass1", $errores); ?> </td> </tr> <tr> <td><label for="pass2">Repita su contraseña</label></td> <td><input type="password" name="pass2" value=""></td> </tr> <tr><td colspan="2" style="text-align:center;">--</td></tr> <tr> <td><label for="nick">Nick</label></td> <td><input type="text" name="nick" <?php recordar("nick"); ?> > <span class="errorform"><?php mostrar_error("nick", $errores); ?> </td> </tr> <tr> <td><input type="submit" name="registrar" value="Registrar"></td> <td><input type="reset" value="Borrar"></td> </tr> </table> </form>
<form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?> " method="POST"> <h2>Entrar como usuario</h2> <table> <tr> <th colspan="2">LOGIN</th> </tr> <tr> <td><label for="login">Usuario</label></td> <td><input type="text" name="login" placeholder="Nick o correo" <?php echo recordar("login"); ?> > <span class="errorform"><?php if ($errores) { mostrar_error("login", $errores); } ?> </span> </td> </tr> <tr> <td><label for="contrasenya">Contraseña</label></td> <td><input type="password" name="contrasenya" placeholder="Escriba su contraseña" value=""> <span class="errorform"><?php mostrar_error("contrasenya", $errores); ?> </span> </td> </tr> <tr>