<?
/**
*
* @Script Random Text
* @version 1.0.0
* @copyright (c) Agrizlive.com
* @license You are allowed to modify this script. But you must provide a link of agrizlive.com in your footer (bottom of the page)
*
* Tested : PHP 5.2.11
*/
/**
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Login</title>
<link rel="stylesheet" type="text/css" href="css/theme.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/ie-sucks.css" />
<![endif]-->
<style>
#loginbox{
position: relative;
margin: 0 auto;
margin-top: 200px;
width: 400px;
}
fieldset{
border: 0;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
<h2 style='color: black'>Admin Login : Free Text Text BY agrizlive.com</h2>
<div id="topmenu">
</div>
</div>
<div id="wrapper">
<div id="loginbox">
<form action="login_chk.php" method="post" class="form">
<fieldset>
<legend>Login</legend>
<p>
<label>Username : </label>
<input type="text" name="username" />
</p>
<p>
<label>Password : </label>
<input type="password" name="password" />
</p>
<?
if(isset($_REQUEST['err'])){
echo "Login Failed.";
}
?>
<p>
<input type="submit" name="submit" value="login" />
</p>
</fieldset>
</form>
</div>
</div>
</div>
</body>
</html>