24/06/2015, 08:41
|
| | | 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 <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> Registro </title>
</head>
<body>
<?php if($mensaje): ?>
<p> <?php echo $mensaje ?> </p>
<?php endif ?>
<form action="index.php" method="post">
<label> id usuario </label>
<br />
<input type="text" name="idusuario" />
<br />
<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="Registrar" />
</form>
</body></html> |