54 lines
1.2 KiB
PHP
54 lines
1.2 KiB
PHP
<html>
|
|
<head>
|
|
<title>Manufacturing</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/cmore.html?sid=' + sid, {asynchronous:true});
|
|
}
|
|
function startShowing()
|
|
{
|
|
new PeriodicalExecuter(showHint, 3);
|
|
new PeriodicalExecuter(function(pe) {}, 3);
|
|
}
|
|
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<i><b>       Crop Day <?php include("cropday.php");?> </b></i></p>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12" id='overview_values' name='overview_values'>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<?php include 'footer.php';?>
|
|
|
|
</body>
|
|
</html>
|