Código PHP:
Ver original<?php
if(isset($_SESSION['email'])){ ?>
<form method="post" action="verificar_login_user.php">
<table>
<tbody>
<tr>
<td><input class="input" name="email" type="text" value="" /></td>
</tr>
<tr>
<td>
<input type="submit" value="Enviar"> <input type="reset" value="Borrar"/></div>
</td>
</tr>
</tbody>
</table>
</form>
<?
}
else {
echo "Error, no tienes permiso.";
}
?>