-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.39 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Meshtastic MQTT Monitor</title>
<link rel="icon" type="image/svg+xml" href="assets/meshtastic.svg">
<link rel="stylesheet" href="src/meshmon.css">
</head>
<body>
<table class="table-main">
<thead>
<tr id="filter-row">
<th id="filter-cell">
<table class="table-head">
<tr>
<td>
<input id="filter-expr-input" type="text" />
</td>
<td>
<div id="nodes-seen" title="Nodes with a seen User packet"></div>
</td>
<td>
<div class="theme-switch-wrapper">
<label class="theme-switch">
<input type="checkbox" id="theme-checkbox>" />
<div class="theme-slider round"></div>
</label>
</div>
</td>
</tr>
</table>
</th>
</tr>
<tr id="thead-row" class="verbatim"></tr>
</thead>
<tbody id="tbody"></tbody>
<tfoot>
<tr id="fit-row" class="packet-header-row"></tr>
<tr id="status-row" class="status-disconnected">
<td id="status-cell"></td>
</tr>
<tr>
<td id="connect-cell">
<table class="table-foot">
<tr>
<td class="left">
<label for="mqtt-url">Broker URL</label>
<input id="mqtt-url" type="text" size="30" />
<label for="mqtt-topic">Topic</label>
<input id="mqtt-topic" type="text" size="10" />
<button id="mqtt-connect">Connect</button>
<button id="clear">Clear</button>
<button id="unselect">Unselect</button>
<span id="mqtt-status"></span>
</td>
<td class="right">
<a href="https://github.com/mskvortsov/meshmon" target="_blank">
<img src="assets/github-mark.svg" class="logo logo-light" />
<img src="assets/github-mark-white.svg" class="logo logo-dark" />
</a>
</td>
</tr>
</table>
</td>
</tr>
</tfoot>
</table>
<script type="module" src="src/meshmon.js"></script>
</body>
</html>