martes, 7 de mayo de 2013

Registro de usuario (crear la base de datos antes)


<html>
<head>
<title>Iniciar Sesión</title>
<style>

*{
padding: 0px;
margin: 0px;
font-family: Freestyle Script;
font-size: 106%;
}
table {
border-radius: 15px;
box-shadow: 10px 10px 10px #212121;
background: #09F;
}
td {
padding: 10px;
}
.boton {
border: 1px solid #cccccc;
border-radius: 1em;
background: #CCC;
box-shadow: 5px 5px 10px #cccccc;
color: #000000;
font-family: Segoe Print;
font-size: 90%em;
padding: 10px;
align: center;
}
.boton:hover{
border: 1px solid #FFFFFF;
background: #9CC;
}

</style>
</head>
<body>
<?
if(!$_POST) {
?>
<div align="center" style="margin-top: 200px;">
<form action="<? $_POST ?>" method="POST" >
<table border="0" width="400" >
<tr>
<td>Usuario:</td>
<td><input type="text" name="usuario" required class="boton"/><td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" required class="boton" /></td>
</tr>
<tr>
<td>&nbsp;<td>
<td><input type="submit" value="Ingresar" /></td>
</tr>
</table>
</form>
</div>
<?
} else {
$usuario = $_POST['usuario'];
$password = $_POST['password'];

$db = mysql_connect("localhost", "root", "123456");
mysql_select_db("programas6");

$consulta = "SELECT * from usuarios WHERE usuario = '$usuario'";
$resultado = mysql_query($consulta);

if(!$resultado) {
echo"<h1>Nombre de usuario incorrecto</h1>";
} else {
$datos = mysql_fetch_array($resultado);
if($datos['password'] == $password) {
echo "<h1>Acceso correcto, espere 5 segundos.</h1>";
?>
<script type="text/javascript">
function redireccionar() {
location.href="bienvenido.html";
}
setTimeout ("redireccionar()", 4000);
</script>
<?
} else {
echo "<h1>Password incorrecto</h1>";
?>
<script type="text/javascript">
function redireccionar(){
location.href="usuario.php";
}
setTimeout ("redireccionar()", 2000);
</script>
<?
}
}
}
?>
</body>
</html>


No hay comentarios:

Publicar un comentario