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.
65 righe
1.4 KiB
65 righe
1.4 KiB
<?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_map.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="container"> |
|
<div style="width: 100%!important"> |
|
<div class="row"> |
|
<div class="col-md-12"> |
|
<div class="row row-eq-height"> |
|
|
|
<div class='container'> |
|
<i class='layer'></i> |
|
<i class='layer'></i> |
|
<i class='layer'></i> |
|
</div> |
|
<iframe src="routine_map.php" style="width:0;height:0;border: 0px;border: none;background-color: #ADDBFF"></iframe> |
|
</div> |
|
|
|
</div> |
|
</div> |
|
|
|
</div> |
|
</div> |
|
<?php header( "refresh:1;url=intro" ); ?> |
|
</main> |
|
<!-- FOOTER --> |
|
<?php include_once "mc_footer.php" ?>
|
|
|