76 lines
2.0 KiB
PHP
Executable File
76 lines
2.0 KiB
PHP
Executable File
<?php
|
|
/*
|
|
Copyright (C) 2007 Mercier Benjamin
|
|
|
|
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.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
session_start ();
|
|
|
|
// Inclusion du core
|
|
require ('system/core.php');
|
|
|
|
|
|
if ( isset($_SESSION['Resultat']) )
|
|
{
|
|
$Message = $_SESSION['Resultat'];
|
|
}
|
|
else
|
|
{
|
|
$Message = "Aucun message a afficher";
|
|
}
|
|
|
|
if ( isset($_SESSION['Lien']) )
|
|
{
|
|
$Lien = $_SESSION['Lien'];
|
|
}
|
|
else
|
|
{
|
|
$Lien = "Page.html";
|
|
}
|
|
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>panel.kelio.org : information</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div style="padding-top:70px; width: 500px; margin:auto;">
|
|
<div style="height:20px; background-color: #ccc;">
|
|
<div class="titre-module"><h2>panel.kelio.org</h2>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="background-color: white; text-align: center">
|
|
<br />
|
|
<img style="float: left; padding-top: 10px; padding-left: 10px; position: absolute;" alt="stop" src="image/icons/stop.png" />
|
|
<br />
|
|
<p><strong><?php echo $Message; ?></strong></p>
|
|
<br />
|
|
<p><a href="<?php echo $Lien; ?>">Retour</a></p>
|
|
|
|
<br />
|
|
</div>
|
|
|
|
<div style="height:20px; background-color: #ccc;"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|