65 lines
2.4 KiB
HTML
65 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Hestia Web Portal</title>
|
|
<link rel="stylesheet" href="/main.css">
|
|
</head>
|
|
<body onload="refreshData()">
|
|
<%- include('trial.html') -%>
|
|
<div id="title"><a href='./'>Hestia Web Portal</a></div>
|
|
<div id="status">
|
|
<!--
|
|
| Auger | rows[0].cells[1] | On Time | rows[0].cells[3] |
|
|
| Feed Rate | rows[1].cells[1] | Off Time | rows[1].cells[3] |
|
|
-->
|
|
|
|
<table id="status-table">
|
|
<tr>
|
|
<td>Auger</td>
|
|
<td></td>
|
|
<td>On Time</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Feed Rate</td>
|
|
<td></td>
|
|
<td>Off Time</td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="controls-container">
|
|
<form action="/" method="post">
|
|
<!-- Start | Shutdown | Reload Settings -->
|
|
<div class="button-container">
|
|
<input class="button-unselected" type="submit" id="ignite" value="Enable Auger" name="start"><input class="button-unselected" type="submit" id="shutdown" value="Disable Auger" name="shutdown"><br>
|
|
</div>
|
|
<!-- Set feed rates -->
|
|
<label for="feedRate">Feed Rate: </label>
|
|
<select name="feedRate">
|
|
<option value="600">Low</option>
|
|
<option value="800">Medium</option>
|
|
<option value="1000">High</option>
|
|
</select>
|
|
<div class="button-container">
|
|
<input class="button-unselected" type="submit" id="reload" value="Reload" name="reload">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="button-container">
|
|
<img src="./dancing_jesus.gif">
|
|
</div>
|
|
<div id="log-container">
|
|
<iframe id="log-area" src="log.txt"></iframe>
|
|
</div>
|
|
<div class="controls-container">
|
|
<form action="/" method="POST">
|
|
<input class="button-unselected" type="submit" id="quit" value="Quit!!" name="quit" style="visibility: hidden;">
|
|
</form>
|
|
</div>
|
|
<script src="./main.js"></script>
|
|
</body>
|
|
</html> |