24/06/2015, 08:46
|
| | | Fecha de Ingreso: noviembre-2014 Ubicación: misiones
Mensajes: 44
Antigüedad: 10 años, 1 mes Puntos: 0 | |
Respuesta: problema de logueo y registro <html>
<head>
<meta charset="utf-8" />
<title> Login </title>
</head>
<body>
<?php if($mensaje): ?>
<p> <?php echo $mensaje ?> </p>
<?php endif ?>
<form action="login.php" method="post">
<label> Nombre de usuario </label>
<br />
<input type="text" name="usuario" />
<br />
<label> Contraseña </label>
<br />
<input type="password" name="pass" />
<br />
<input type="submit" value="Ingresar" />
</form>
</body>
</html> |