-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
31 lines (30 loc) · 904 Bytes
/
dashboard.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<head>
<title>OctoPrint Dashboard</title>
<link rel="stylesheet" href="dashboard.css">
</head>
<body>
<table id="maintable">
<tr id="mainrow">
<td style="width: 645px;">
<div id="webcaminfo">
Loading Webcam...
</div>
</td>
<td>
<div id="jobinfo">
Loading Print Job Information...
</div>
<div id="tempinfo">
Loading Temprature Information...
</div>
<div id="graph">
Loading Temprature Graph...
</div>
</td>
</tr>
</table>
<br />
<script src="dashboard.js"></script>
</body>
</html>