59 lines
1.7 KiB
PHP
59 lines
1.7 KiB
PHP
<?php include "session.php";
|
|
include "userAccess.php"; ?>
|
|
<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 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 align="center">
|
|
<font size="5"><a href="http://controlsdev.lasuca.com" style="color: red;"><b><i><u>Try the new controls site refresh!</u></i></b></a></font>
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<?php include("menuinclude.php"); ?>
|
|
|
|
<div class="col-13" >
|
|
<table width="100%" border="1" cellspacing="0" cellpadding="2">
|
|
<tr>
|
|
<td class="listbg"><a href="http://lasuca.com:9090" target="_blank">Main Camera Server</a></td>
|
|
</tr >
|
|
<tr>
|
|
<td class="listbg"><a href="http://lasuca.com:9092" target="_blank">Mill Control East</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="listbg"><a href="http://lasuca.com:9096" target="_blank">Mill Control West</a></td>
|
|
</tr >
|
|
<tr>
|
|
<td class="listbg"><a href="http://lasuca.com:9094" target="_blank">Boiler Control A</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="listbg"><a href="http://lasuca.com:9097" target="_blank">New Boiler Control A</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="listbg"><a href="http://lasuca.com:9098" target="_blank">New Boiler Control B</a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?php include 'footer.php';?>
|
|
|
|
</body>
|
|
</html>
|