session_start();
header("Cache-control: private"); // IE 6 Fix.
if (isset($_SESSION["cfgfile"])) {
include("/home/config/".$_SESSION["cfgfile"]);
} else {
echo("No config file");
exit();
}
if (!isset($_SESSION["visitor"])) {
header("Location:$site/main/members.php");
}
?>
include("/home/hiring_template/include/header.tpl");
?>
|
include("$serveraddr/include/candnav.php");
?>
|
|
Change Password
if ($passwordtaken==1) {
echo("The password you chose is already taken. Please choose another.");
} else {
echo("Here you may change your password. ");
}
?>
Simply enter your desired new password twice in the form provided.
|
|
include("/home/hiring_template/include/footer.tpl");
?>
|