-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
92 lines (86 loc) · 3.28 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Cue View</title>
<link rel="stylesheet" href="src/assets/css/index.css" />
</head>
<body>
<div id="main">
<div class="col" id="device-list-col">
<div id="view-buttons-bar">
<button id="save-slot-1" class="save-slot" title="Window arrangement 1">1</button>
<button id="save-slot-2" class="save-slot" title="Window arrangement 2">2</button>
<button id="save-slot-3" class="save-slot" title="Window arrangement 3">3</button>
</div>
<div id="device-list">
<h3 class="init">Click the Search button to find devices on the network.</h3>
</div>
<div id="device-inspector">
<div id="device-tools">
<select class="left button" id="add-device-button" title="Add Device..."></select>
<button class="left" id="search-button" title="Search network for devices">
<img src="src/assets/img/outline_search_white_18dp.png" />
</button>
<button class="left" id="refresh-device-button" title="Refresh Device" disabled>
<img src="src/assets/img/outline_refresh_white_18dp.png" />
</button>
<button class="right" id="network-info-button">
<img src="src/assets/img/outline_info_white_18dp.png" />
</button>
</div>
<div id="device-settings">
<table id="device-settings-table">
<tr>
<th>Name:</th>
<td colspan="3">
<input id="device-settings-name" type="text" maxlength="30" />
</td>
</tr>
<tr>
<th>Type:</th>
<td colspan="3">
<select id="device-settings-plugin-dropdown"></select>
</td>
</tr>
<tr>
<th>Addr:</th>
<td colspan="3">
<input id="device-settings-ip" type="text" maxlength="30" title="IP Address of the remote device" />
</td>
</tr>
<tr>
<th id="device-settings-port-label" title="'Receive' port on the remote device">Port:</th>
<td>
<input
id="device-settings-port"
type="number"
maxlength="5"
title="'Receive' port on the remote device" />
</td>
<th>Pin:</th>
<td><input id="device-settings-pin" type="checkbox" /></td>
</tr>
<tr id="device-settings-rx-port-row">
<th title="'Send' port on the remote device">Local:</th>
<td>
<input
id="device-settings-rx-port"
type="number"
maxlength="5"
title="'Send' port on the remote device" />
</td>
<th></th>
<td></td>
</tr>
<tbody id="device-settings-fields"></tbody>
</table>
<h3>No Device Selected</h3>
</div>
</div>
</div>
<div id="all-devices"></div>
</div>
<script src="src/index.js"></script>
</body>
</html>