54 lines
1.6 KiB
PHP
Executable File
54 lines
1.6 KiB
PHP
Executable File
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Pannello</title>
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" href="../jquery/ui/themes/base/jquery-ui.css">
|
|
|
|
<script src="../jquery/jquery.js"></script>
|
|
<script src="../jquery/ui/jquery-ui.js"></script>
|
|
|
|
<script src="js/datepicker-it.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$( "#datepicker" ).datepicker( $.datepicker.regional[ "it" ] );
|
|
$(".data:input").datepicker({
|
|
changeMonth : true,
|
|
changeYear : true,
|
|
minDate : "-90Y",
|
|
maxDate: "+1Y",
|
|
yearRange: "1940:2050"
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<link rel="stylesheet" type="text/css" href="<?php print $CONF['base_url'] ?>/css/stile.css" />
|
|
<?php
|
|
$tabella_ext = new html (0,"90%", array(0),"center");
|
|
if ($UTENTE['utente'] != '') { ?>
|
|
<tr><td>
|
|
<?php
|
|
$tabella = new html (0,"100%",array(33, 33, 0));
|
|
?>
|
|
<tr bgcolor="#FFC350">
|
|
<td nowrap class="ltop">Utente: <?php print $_SESSION['username'] ?></td>
|
|
<td nowrap class="ctop"><?php if ($MODULO['nome'] != "") print "Modulo: ".$MODULO['nome'] ?></td>
|
|
<td nowrap class="rtop"><a class="rtop" href="<?php print $CONF['base_url'] ?>/core/logout.php">Logout</a></td>
|
|
</tr>
|
|
<?php $tabella->close(); ?>
|
|
</td></tr>
|
|
<tr><td class="spaziov" colspan=2><img src="<?php print $CONF['base_url'] ?>/img/spazio.gif"></td></tr>
|
|
<tr><td align="center">
|
|
<?php
|
|
|
|
lista_moduli();
|
|
} else {?>
|
|
<tr bgcolor="#FFC350"><td> </td></tr>
|
|
<?php } ?>
|
|
</td></tr>
|
|
<tr><td class="spaziov" colspan=2><img src="<?php print $CONF['base_url'] ?>/img/spazio.gif"></td></tr>
|
|
<tr><td align="center">
|