-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (35 loc) · 1.21 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../res/site.css">
<link rel="icon" href="data:,">
<style>
table {border-collapse: collapse;width: 100%; font-family: sans-serif;}
td, th {text-align: left; font-family: sans-serif; font-size:14px;}
tr {border-bottom: 3px solid #ddd;}
caption {text-align: left;}
body {font-family: sans-serif;}
</style>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/[email protected]/dist/mqtt.min.js"></script>
<script type="text/javascript" src="jsscripts/control-dev.js"></script>
<title>IoT Network</title>
</head>
<body onLoad="enumDevices()">
<table id="devTable">
<caption style="color: white; background-color: Gray; font-size:30px; font-family:sans-serif">
<b>IoT Devices</b>
<span></span>
<button id = "refresh" class = "brefresh" onclick = "enumDevices()"></button>
</caption>
<tr>
<th style = "width:20px"></th>
<th style = "width:150px">Device</th>
<th>IP</th>
</tr>
</table>
</body>
</html>