Initial revision
[citadel.git] / ctdlphp / logout.php
1 <?PHP
2         include "ctdlheader.php";
3
4         bbs_page_header();
5
6         echo <<<LITERAL
7
8 <h1>Goodbye</h1>
9
10 You are being logged out.
11
12 <a href="index.php">Log in again</a><BR>
13
14 LITERAL;
15
16         ctdl_end_session();
17         bbs_page_footer();
18
19 ?>
20