-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.29 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.29 KB
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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dashy Dashboard</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="styles/style.css" rel="stylesheet">
<script src="scripts/xhr.js"></script>
<script src="scripts/dashboard-ui.js"></script>
<script src="scripts/dashboard.js"></script>
<script src="scripts/main.js"></script>
</head>
<body class="hidden">
<section id="info">
<p><b id="dashboard-name">n/a</b> - Last update: <span id="last-update">n/a</span>. Next update in <span id="next-update">n/a</span> seconds.</p>
</section>
<section id="disconnected">
<h2>Connecting to Dashy server...</h2>
</section>
<section id="error">
<h2>Error connecting to Dashy server</h2>
<pre id="error-message"></pre>
</section>
<section id="not-registered">
<h2>Registering this device to Dashy</h2>
<p>Please wait...</p>
</section>
<section id="no-code">
<h2>Dashy is not configured</h2>
<p>Loading data from Dashy server...</p>
</section>
<section id="not-configured">
<h2>Dashy is not configured</h2>
<p>Configure this dashboard using this code:</p>
<p id="code">...</p>
</section>
<section id="dashboard">
</section>
</body>
</html>