Ver Mensaje Individual
  #6 (permalink)  
Antiguo 24/06/2015, 08:46
Avatar de cecitn
cecitn
 
Fecha de Ingreso: noviembre-2014
Ubicación: misiones
Mensajes: 44
Antigüedad: 9 años, 5 meses
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>