LDAPAccountManager/lam/templates/logout.php

66 lines
1.9 KiB
PHP
Raw Normal View History

<?php
2003-03-19 16:39:26 +00:00
/*
$Id$
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
Copyright (C) 2003 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
User is logged off from LDAP server, session is destroyed.
*/
// delete key and iv in cookie
setcookie("Key", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", 0, "/");
setcookie("IV", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", 0, "/");
2003-05-14 16:57:57 +00:00
include_once("../lib/status.inc");
2003-04-23 19:13:55 +00:00
include_once("../lib/ldap.inc");
// start session
session_save_path("../sess");
2003-03-19 16:39:26 +00:00
@session_start();
// close LDAP connection
$_SESSION["ldap"]->destroy();
2003-03-19 16:39:26 +00:00
// destroy session
session_destroy();
// print logout message
2003-06-05 19:04:12 +00:00
2003-07-29 11:52:26 +00:00
echo $_SESSION['header'];
2003-06-05 19:04:12 +00:00
2003-03-19 16:39:26 +00:00
?>
<html>
2003-06-05 19:04:12 +00:00
<head>
2003-05-21 17:39:30 +00:00
<title>
2003-06-24 15:50:38 +00:00
<?php echo _("Logout"); ?>
2003-05-21 17:39:30 +00:00
</title>
<link rel="stylesheet" type="text/css" href="../style/layout.css">
2003-06-05 19:04:12 +00:00
</head>
<body>
<p align="center"><a href="http://lam.sf.net" target="new_window">
<img src="../graphics/banner.jpg" border=1 alt="LDAP Account Manager"></a>
</p>
<hr>
<br>
2003-06-24 15:50:38 +00:00
<p align="center"><big><?php echo ("You have been logged off from LDAP Account Manager."); ?></big></p>
<br><br><br><br><br><a href="../templates/login.php" target="_top"> <?php echo _("Back to Login") ?> </a>
</body>
</html>