web pages
[banana.git] / disconnect.php
1 <?php
2 /********************************************************************************
3 * disconnect.php : exit page
4 * ----------------
5 *
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
9
10 require("locales/locales.inc.php");
11 require("include/session.inc.php");
12 $_SESSION=array();
13 session_destroy();
14
15 require("include/header.inc.php");
16 ?>
17 <div class="title">
18 <?php echo $locale['disconnect']['title'];?>
19 </div>
20 <p class="normal">
21 <?php echo $locale['disconnect']['back'];?>
22 </p>
23 <?php
24 require("include/footer.inc.php");
25 ?>