Alternc  3.2
Alternc logiel libre pour l'hébergement
 All Data Structures Namespaces Files Functions Variables Pages
mem_logout.php
Go to the documentation of this file.
1 <?php
2 /*
3  $Id: mem_logout.php,v 1.3 2003/08/13 23:52:24 root Exp $
4  ----------------------------------------------------------------------
5  AlternC - Web Hosting System
6  Copyright (C) 2002 by the AlternC Development Team.
7  http://alternc.org/
8  ----------------------------------------------------------------------
9  Based on:
10  Valentin Lacambre's web hosting softwares: http://altern.org/
11  ----------------------------------------------------------------------
12  LICENSE
13 
14  This program is free software; you can redistribute it and/or
15  modify it under the terms of the GNU General Public License (GPL)
16  as published by the Free Software Foundation; either version 2
17  of the License, or (at your option) any later version.
18 
19  This program is distributed in the hope that it will be useful,
20  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  GNU General Public License for more details.
23 
24  To read the license please visit http://www.gnu.org/copyleft/gpl.html
25  ----------------------------------------------------------------------
26  Original Author of file:
27  Purpose of file:
28  ----------------------------------------------------------------------
29 */
30 require_once("../class/config.php");
31 
32 $mem->del_session();
33 
34 if (!$charset) $charset="UTF-8";
35 @header("Content-Type: text/html; charset=$charset");
36 
37 ?>
38 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
39 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
40 <head>
41 <title><?php __("Disconnected"); ?></title>
42 <link rel="stylesheet" href="styles/style.css" type="text/css" />
43 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
44 </head>
45 <body style="margin: 20px;" onLoad="setTimeout('redirect_panel()', 1500)">
46  <div id="global">
47 
48  <div id="content" style="width:1000px;">
49  <h3 style="text-align: center"><?php __("Disconnected"); ?></h3>
50 
51  <?php __("You have been logged out of your administration desktop."); ?><br />
52  <p><a href="index.php"><?php __("Click here to log in"); ?></a></p>
53  <p>&nbsp;</p>
54  </div>
55  <div style="clear:both;" ></div>
56  </div>
57 <script type="text/javascript">
58 function redirect_panel() {
59  window.location = "index.php"
60 }
61 </script>
62 </body>
63 </html>