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.
57 righe
1.4 KiB
57 righe
1.4 KiB
2 anni fa
|
<?php if (session_id() == "")session_start();ob_start(); ?>
|
||
|
<?php include_once "cfg.php" ?>
|
||
|
<?php
|
||
|
if (!isset($_SESSION['USER_ID'])) {
|
||
|
header("location: login");
|
||
|
}
|
||
|
?>
|
||
|
<!-- HEADER -->
|
||
|
<?php include_once "mc_header.php" ?>
|
||
|
|
||
|
<!-- MENU -->
|
||
|
<?php include_once "mc_menu.php" ?>
|
||
|
|
||
|
<?php include_once "routine_count.php" ?>
|
||
|
<style>
|
||
|
.p2 {
|
||
|
padding: 4px!important;
|
||
|
}
|
||
|
|
||
|
.scheda {
|
||
|
background: #fff;
|
||
|
-webkit-box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.1);
|
||
|
-moz-box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.1);
|
||
|
box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.1);
|
||
|
border: 1px solid #eceff1;
|
||
|
position: relative;
|
||
|
/*height: 100%;*/
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
.scheda-round {
|
||
|
border-radius: 4px;
|
||
|
padding: 10px;
|
||
|
height: 230px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<!-- BODY -->
|
||
|
<main class="col-12 col-md-9 col-xl-10 py-md-3 px-md-3 bd-content">
|
||
|
|
||
|
<div class="d-block d-sm-none" style="height:90px">XXXX </div>
|
||
|
|
||
|
|
||
|
<div class="row">
|
||
|
|
||
|
<div class="col-sm-12">
|
||
|
<div class="row" style="margin:60px;">
|
||
|
<div class="col-sm-12"><i class="fal fa-exclamation-triangle" style="font-size: 80px;margin-top: 60px;margin-bottom: 20px"></i><h5><p class="text-monospace">Qualcosa non ha funzionato<br> prova a riperete la procedura <i class="fal fa-smile-wink"></i></p></h5></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
<!-- FOOTER -->
|
||
|
<?php include_once "mc_footer.php" ?>
|