extranet/www/pages/logout.php

31 lines
1009 B
PHP
Raw Normal View History

<?
// $url_connexion=SITEINST_URL1;
$url_connexion=$_SESSION['tabInfo']['referer_login'];
if ($url_connexion=='')
$url_connexion=$_SERVER['HTTP_REFERER'];
elseif ($url_connexion<>SITEINST_URL1 &&
$url_connexion<>SITEINST_URL2 &&
$url_connexion<>'http://www2.scores-decisions.com/extranet/')
$url_connexion=SITEINST_URL1;
$_SESSION['connected']=false;
$_SESSION['tabInfo']=array();
if (!isset($refresh)) $refresh=0;
if (!isset($message)) $message="Vous avez <20>t<EFBFBD> d<>connect<63> de l'extranet";
?>
<html>
<head>
<title>Extranet Scores & D<EFBFBD>cisions</title>
<meta HTTP-EQUIV="Refresh" CONTENT="<?=$refresh?>; URL=<?=$url_connexion?>" />
</head>
<body>
<h4><?=$message?></h4>
<h5>Si cette page ne disparait pas au bout de <?=$refresh?> seconde(s), veuillez cliquer <a href="<?=$url_connexion?>">ici</a></h5><br/>
<h5>Sinon cliquer <a href="<?=SITEINST_URL1?>">ici</a> pour atteindre la page d'accueil du site de Scores &amp; D&eacute;cisions</h5>
</body>
</html>
<?
die();
?>