<?php
session_start();
session_destroy();
include_once("../php/common_functions.php"); //common functions in the course registartion system
include_once("../php/config.php"); //holds global config variables
$page_title = "Logout";
include("../php/top.php"); //the HTML that outlines the top of the page
?>
<article class="ces-wide">
<div class="ces-header">
<?php include("../menu.php"); ?>
<h2>CES Logout</h2>
</div>
<p class="alert alert-success">You have been successfully logged out.</p>
</article>
</section><!-- #middle-->
</div><!-- #wrapper -->
<?php require_once $_SERVER['DOCUMENT_ROOT'].'/require/footer.php';?>