| Current Path : /var/www/cesa.co.za/members/ |
| Current File : /var/www/cesa.co.za/members/index.php |
<?php
// Configuration and Autentication
include( '../inc/member_auth.inc' );
include( '../inc/funcinternational.inc' );
switch ($auth) {
case valid:
// System Includes
//include( 'inc/pref.inc' );
// Variables Unique to page
$title = "Welcome to CESA Members Business Centre";
$description = "Consulting Engineers of South Africa. Members only Online Business Centre StartPage.";
$keywords = "online, services, members, consulting, engineers";
// Start Page Includes
include( '../inc/conf.inc' );
include( '../inc_header.php' );
?>
<!-- Start Page Content Here -->
<table width="100%" cellpadding="10" border="0" cellspacing="0"><tr><td valign="top">
<h2>Welcome <?php echo $firstname; ?></h2>
</p>
<p>
The CESA Member Zone has been integrated into the main CESA website. Please use the menu on the left to access advisory notes,
documentation, NLC reports etc. If asked for a username and password, use your member zone username and
password to access sensitive information.
</p>
<p>
Useful links are listed below, for your convenience:
</p>
<p><ul>
<li><a href="/advisory_full.php">Advisory Notes</a></li>
<li><a href="/annualdeclaration.php">Annual Declaration</a></li>
<li><a href="/memberdocuments.php">Documentation</a></li>
<li><a href="/enews.php">eNews</a></li>
<li><a href="/nlc.php">National Liaison Committees and Matrix</a></li>
</ul>
</p>
</td></tr></table>
<br>
<!-- End Page Content Here -->
<?php
// End page Includes
include( '../inc_footer.php' );
break;
case invalid:
header("Location: http://www.cesa.co.za/login.php?pageurl=/members/index.php");
//systemerror("Login Error","Initial Login Failure",getenv ("PATH_INFO"), $authorized);
break;
default:
systemerror("System Error","System Failure on Authentication",getenv ("PATH_INFO"), "There is a problem logging into our system. Try again later or if the problem persists, please contact CESA to report the problem.");
break;
}
?>