Login.php
Código PHP:
Ver original<?php
include("db-info.php");
include("session.inc.php");
include("loadsettings.inc.php");
?>
<html>
<head>
<title><? echo $webtitle; ?> - Logearse</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<meta name="description" content="<? echo $description; ?>" />
<meta name="keywords" content="<? echo $keywords; ?>" />
</head>
<body link=#336699 vlink=#336699 alink=#336699>
<?php include("header.php"); ?>
<center>
<div class="content-container">
<center>
<h1>Logearse.</h1>
</center>
<div align="center"><br>
<?php
if (isset($_POST["username"])) {
echo "<br />";
if (($username != "") && ($password != ""))
{
$q = "SELECT username FROM `members` WHERE (username = '$username') and (password = '$password')";
if (!$number) {
echo "Lo sentimos! el usuario no existe, o introdujo un password incorrecto.";
showForm();
}
else {
mysql_query("UPDATE `members` SET access = '$date' WHERE username = '$username'"); $_SESSION["imagehost-user"] = $username;
$_SESSION["imagehost-pass"] = $password;
echo "<b>Usted se ah logeado correctamente.</b> <br><br>Sera redirigido la panel de Miembros.
<br>
<a href=\"account.php\">Click aqui</a> Para visitar el area de miembros.";
echo "<meta http-equiv=\"refresh\" content=\"3; url='account.php'\" />";
}
}
else
{ echo "Por favor complera los campos primero!"; showForm(); }
}
else
{
if ($session == false)
showForm();
else
echo "Lo sentimos! Usted ya esta registrado.";
}
?>
<? function showForm() { ?>
</div>
<form method="POST" action="login.php" name="myForm">
<div align="center">
<table>
<tr>
<td><LABEL id="title">Usuario: </td> <td> <input type="text" maxlength=30 size=30 name="username"> </td>
</tr>
<tr>
<td><LABEL id="title">Password: </td> <td> <input type="password" maxlength=30 size=30 name="password"> </td>
</tr>
<tr>
<td> </td> <td><br> <a href=#><img src="images/login.png" border=0 onClick="myForm.submit();"></a> </td>
</tr>
</table>
</div>
</form>
<div align="center"><br>
<br>
</div>
<LABEL id="text">
<div align="center"><b>Perdiste tu Password?</b> <a href="forgot.php">Click aqui</a> para enviar la password a su mail.
<br>
<br>
</div>
</LABEL>
<? } ?>
<?php include("footer.php"); ?>
</div>
</center>
</body>
</html>
Y la web es http://www.ironpic.com.ar
Saludos (: