<?
/**
*
* @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
*/
/**
*/
include_once("login_verify.php");
include_once("header.php");
include_once("text_config.php");
include_once("functions.php");
if(isset($_REQUEST['submit']))
{
$status = change_passowrd();
}
?>
<div id="content" class="container_16 clearfix">
<form method="post" action="">
<div class="grid_16">
<h2>Change Password</h2>
<?
if(isset($_REQUEST['submit'])){echo "<p>".$status."</p>";}
?>
</div>
<div class="grid_5">
<p>
<label for="url">Password <small>Enter New Password</small></label>
<input type="password" name="pass-1" value="" />
</p>
</div>
<div class="grid_5">
<p>
<label for="url">Retype Password <small>Enter New Password</small></label>
<input type="password" name="pass-2" value="" />
</p>
</div>
<div class="grid_16">
<p class="submit">
<input type="submit" value="Post" name="submit" />
</p>
</div>
</form>
</div>
<?
include_once("footer.php");
?>