63 lines
1.3 KiB
PHP
63 lines
1.3 KiB
PHP
<?php include 'session.php';?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Overview</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
<link rel="shortcut icon" href="http://lasuca.com/images/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script type="text/javascript" src="script.js"></script>
|
|
|
|
<script src="js/prototype.js" type="text/javascript"></script>
|
|
<script src="js/scriptaculous.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
function showHint()
|
|
{
|
|
var sid = Math.random();
|
|
new Ajax.Updater('overview_values', 'data/overview2.php?sid=' + sid, {asynchronous:true});
|
|
}
|
|
function startShowing()
|
|
{
|
|
new PeriodicalExecuter(showHint, 1);
|
|
new PeriodicalExecuter(function(pe) {}, 5);
|
|
}
|
|
startShowing();
|
|
</script>
|
|
<script type="text/javascript">
|
|
$('.js #menu-toggle').click(function (e) {
|
|
$('body').toggleClass('active');
|
|
e.preventDefault();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="center">
|
|
|
|
<div class="header">
|
|
<h1>LASUCA CONTROLS</h1>
|
|
<p>General Overview</p>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<?php if (isset($_GET['error']))
|
|
{
|
|
if ($_GET['error'] == "accessDenied")
|
|
{
|
|
echo "<p class='error'>Access Denied</p>";
|
|
}
|
|
}
|
|
?>
|
|
|
|
<div class="col-15" id='overview_values' name='overview_values'>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<?php include 'footer.php';?>
|
|
|
|
</body>
|
|
</html>
|