<?php
session_start();
require("./CustomSql.inc.php");
if (!(session_is_registered("CID"))){
print "<a href=\"login.php\">$front_pleaselogin</a>";
exit;
}
$db = new CustomSQL($DBName);
$showtable = true;
$errortag = false;
if (!empty($modipass)) {
if (empty($password)){
$errortag = true;
$errormsg = $error_passwordempty;
}
if (empty($oldpass)){
$errortag = true;
$errormsg = $error_passwordempty;
}
if ($password!=$passretype){
$errortag = true;
$errormsg = $error_passretypewrong;
}
$checkresult = $db->checkpassword($CID,$oldpass);
if ($checkresult==0) {
$errortag = true;
$errormsg = $error_wrongpassword;
}
if (!$errortag){
$db->modifypass($password,$CID);
$showtable = false;
}
}
?>
<html>
<head>
<title><?php print "$front_modipass"; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php print "$front_charset"; ?>">
<link rel="stylesheet" href="./style/style.css" type="text/css">
<script language="JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
<?php
include("top.php3");
?>
<table width="770" border="0" cellspacing="1" cellpadding="0" align="center" class="table_01">
<tr>
<td class="table_02" width="160" valign="top">
<table width="160" border="0" cellspacing="0" cellpadding="4">
<tr>
<td> </td>
</tr>
<tr>
<td valign="top"><?php include("left.php"); ?></td>
</tr>
</table>
</td>
<td class="menu" bgcolor="#FFFFFF" valign="top" width="610">
<table border="0" cellspacing="0" cellpadding="4" width="610">
<tr>
<td bgcolor="#F2F2F2" class="menu_in">::<?php print "$front_modipass"; ?> <font color="#FF0000">*</font> <?php print "$front_requiredinfo"; ?></td>
</tr>
<?php
if ($errortag){
?>
<tr>
<td><font color="#FF0000"><?php print "$errormsg"; ?></font></td>
</tr>
<?php
}
?>
<tr>
<td>
<?php
if ($showtable){
?>
<form action="<?php print "$PHP_SELF"; ?>" method="POST">
<table border=0 cellpadding=2 cellspacing=2>
<tr><td width="120"><?php print "$front_oldpassword"; ?> : </td><td><input type="password" name="oldpass" value=""> <font color="#FF0000">*</font></td></tr>
<tr><td><?php print "$front_newpassword"; ?> : </td><td><input type="password" name="password" value=""> <font color="#FF0000">*</font></td></tr>
<tr><td><?php print "$front_passwordagain"; ?> : </td><td><input type="password" name="passretype" value=""> <font color="#FF0000">*</font></td></tr>
<tr><td></td><td><input type="submit" name="modipass" value="<?php print "$front_modipass"; ?>"></td></tr>
</table>
</form>
<?php
}
else{
?>
<a href="login.php"><?php print "$front_back"; ?></a>
<?php
}
?>
</td>
</tr>
<tr>
<td align="right"> </td>
</tr>
</table>
</td>
</tr>
</table>
<?php
include("bottom.php3");
?>
</body>
</html>