* Cleaned up the pages in preparation for handing it off to the extremely
[citadel.git] / ctdlphp / logout.php
1 <?PHP
2
3 // $Id$
4 //
5 // Log out the user and destroy the session.
6 //
7 // Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
8 // This program is released under the terms of the GNU General Public License.
9 //
10
11         include "ctdlheader.php";
12
13         bbs_page_header();
14
15         ctdl_mesg("goodbye");
16
17         echo "<a href=\"index.php\">Log in again</a><BR>\n" ;
18
19         bbs_page_footer();
20         ctdl_end_session();
21 ?>