View file public_html/login.php

File size: 647B
<?php include "inc/def.php"; ?>

<?php include "inc/usrchk.php";
if($guest==0) {
    header("location:home.php");
} ?>
<title>LogIn</title>
<?php include "inc/header.php"; ?>
<div class="line">Members Login</div>
<form action="checkme.php" method="post">
<div class="lwt">
<label for="user">Username :</label><br />
<input size="30" maxlength="20" type="text" name="user" />
</div>

<div class="lgn">
<label for="user">Password :</label><br />
<input size="30" maxlength="20" size="30" maxlength="20" type="password" name="pass" />
</div>

<div class="lwt">
<input type="submit" value="Login" />
</div>


</form>
<?php include "inc/footer.php"; ?>