2011-05-15 01:32:47 +02:00
|
|
|
<?php
|
2014-07-04 11:21:31 +02:00
|
|
|
/* This software is governed by the CeCILL-B license. If a copy of this license
|
|
|
|
* is not distributed with this file, you can obtain one at
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
|
|
|
|
*
|
|
|
|
* Authors of STUdS (initial project) : Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
|
|
|
* Authors of OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt
|
|
|
|
*
|
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
|
|
* Auteurs d'OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*/
|
2011-05-15 01:32:47 +02:00
|
|
|
include_once('bandeaux.php');
|
|
|
|
|
2014-06-11 19:19:17 +02:00
|
|
|
echo '<!DOCTYPE html>'."\n";
|
|
|
|
echo '<html lang="'.$lang.'">'."\n";
|
2011-05-15 01:32:47 +02:00
|
|
|
echo '<head>'."\n";
|
|
|
|
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'."\n";
|
|
|
|
echo '<title>Maintenance '.NOMAPPLICATION.' </title>'."\n";
|
2014-06-11 19:19:17 +02:00
|
|
|
echo '<link rel="stylesheet" type="text/css" href="'.get_server_name().'style.css">'."\n";
|
2011-05-15 01:32:47 +02:00
|
|
|
echo '</head>'."\n";
|
|
|
|
echo '<body>'."\n";
|
|
|
|
logo();
|
|
|
|
bandeau_tete();
|
|
|
|
|
|
|
|
echo '<div class=corpscentre>'."\n";
|
2014-07-04 11:21:31 +02:00
|
|
|
print "<H2>L'application ".NOMAPPLICATION." est pour l'instant en maintenance.<br /> </H2>"."\n";
|
2011-05-15 01:32:47 +02:00
|
|
|
print "Merci de votre compréhension."."\n";
|
2014-07-04 11:21:31 +02:00
|
|
|
echo '<br /><br /><br />'."\n";
|
2011-05-15 01:32:47 +02:00
|
|
|
echo '</div>'."\n";
|
|
|
|
|
|
|
|
// Affichage du bandeau de pied
|
|
|
|
sur_bandeau_pied();
|
|
|
|
bandeau_pied();
|
|
|
|
echo '</body>'."\n";
|
2014-06-11 19:19:17 +02:00
|
|
|
echo '</html>'."\n";
|