Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

52 righe
1.9 KiB

<!doctype html>
<?
include 'lib/apistatic.php';
$msg = "";
switch ($statoSportello) {
case SPORTELLO_MANUTENZIONE:
$msg = "Gentile utente, il servizio è in manutenzione<br/> Ci scusiamo per il disagio.<br>Grazie.";
break;
case SPORTELLO_PREPARAZIONE_PRE:
$msg = "Gentile utente, lo sportello per la preparazione delle istanze sarà attivo dal " . DATA_PREPARAZIONE_INIZIO . " al " . DATA_PREPARAZIONE_FINE . ". <br/>";
break;
case SPORTELLO_PRESENTAZIONE_PRE:
$msg = "Gentile utente, lo sportello per la preparazione delle istanze è chiuso<br/>";
break;
case SPORTELLO_PRESENTAZIONE_POST:
$msg = "Gentile utente, lo sportello per la preparazione delle istanze è chiuso<br/>";
break;
}
if ($msg == "") {
header("Location: index.php");
}
?>
<html lang="en">
<? include_once ROOT . 'layout/head.php'; ?>
<body>
<?
include_once ROOT . 'layout/header_info.php';
include_once ROOT . 'layout/menu.php';
?>
<main role="main">
<img src="assets/img/landing.jpg" alt="BONUSICILIA" class="img-fluid"/>
<header class="masthead-page mb-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12">
<h2 class="text-center text-primary">
<b><?= $msg ?></b>
</h2>
<br/><br/>
<br/>
</div>
</div>
</div>
</header>
<img src="assets/img/FooterBanner_1.0.png" alt="BONUSICILIA" class="img-fluid"/>
</main>
<script src="<?=BASE_HTTP?>assets/js/jquery/jquery-3.5.1.min.js" type="text/javascript"></script>
<? include_once ROOT . 'layout/footer_static.php'; ?>
</body>
</html>