<?php
include_once("include/db_connection.php");
header("Expires: Thu, 17 May 2001 10:17:17 GMT"); // Date in the past
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header ("Pragma: no-cache"); // HTTP/1.0
session_start();
if($_SESSION["loggedIn"] == FALSE){
header("Location:user_login.php");
exit;
}include_once("config.php");
$UserName=$_SESSION['UserName'];
include('header1.php');
$query1=mysql_fetch_array(mysql_query("select UserName FROM users WHERE Type='1' AND UserName='$UserName'" ));
if($UserName==$query1['UserName'] ){
echo $UserName;
include('left_user.php');}
else{
include('left_coord.php');
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Premium Series by Free CSS Templates</title>
<meta name="keywords" content="" />
<meta name="Premium Series" content="" />
<link href="default.css" rel="stylesheet" type="text/css" media="screen" />
<script language="JavaScript" src="gen_validatorv31.js" type="text/javascript"></script>
<script Language="JavaScript" Type="text/javascript">
function limitText(limitField, limitNum) {
if (limitField.value.length > limitNum) {
limitField.value = limitField.value.substring(0, limitNum);
alert("Please enter at most 15 characters in the \"Action\" field.");
return false;
}
return true;
}
}
</script>
</head>
<body>
<div id="wrapper">
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="prtCnt" align="center">
<div id="content" align="center">
<div class="post">
<h2 class="title"> </h2>
<div class="entry">
<h3 align="center"> Change password:</h3>
<form action="user_change_password_action.php" method="post" name="form1" onsubmit="return validate_form(this)">
<table width="545" border="0">
<tr>
<td width="333" ><strong>curent password : </strong></td>
<td width"273">
<input name="cur_password" type="password" value="<?php echo $cur_password; ?>" size="" maxlength="15" onKeyDown="limitText(this,15);" onKeyUp="limitText(this,15);"> </td>
</tr>
<tr>
<td><p><strong>new password :</strong><br>(Minimum of 3 characters Maximum of 15 characters) </p>
</td>
<td width="202">
<input name="new_password" type="password" value="<?php echo $new_password; ?>" maxlength="15"> </td>
</tr>
<tr>
<td><strong>confirm new password : </strong></td>
<td>
<input name="con_password" type="password" value="<?php echo $con_password; ?>" maxlength="15"> </td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" name="Submit" value="Change" onClick="return document.returnValue">
<label>
<input type="reset" name="Reset" id="button" value="Reset">
</label>
</form></td>
</tr>
</table>
</p>
</div>
</div>
</div>
</div>
<!-- end content -->
<!-- start sidebars -->
<!-- end sidebars -->
<div style="clear: both;"> </div>
</div>
<!-- end page -->
</div>
</body>
</html>
<?php
include('footer.php');
?>