-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (47 loc) · 1.53 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
<!doctype html>
<html>
<head lang="en">
<meta charset="utf-8">
<title>AxLE Recorder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="module" src="./lib/Application.mjs"></script>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon"type="image/x-icon" href="data:image/x-icon;,">
</head>
<body class="noconnections no-annotation">
<header>
<h1>
AxLE Recorder
<input type="text" id="title" placeholder="Untitled">
</h1>
</header>
<main>
<div class="stream-controls">
<button class="button" id="disconnect">⏏️️️️️ Disconnect</button>
<button class="button" id="connect">▶️ Connect</button>
<button class="button" id="stop">⏹ Stop</button>
<button class="button" id="record">⏺ Record</button>
<button class="button" id="stats">📈 Stats</button>
</div>
<div id="graphs"></div>
<div class="device-controls">
<div class="loader" id="addLoader"></div>
<button class="button" id="add">➕ Add Device</button>
</div>
</main>
<section class="annotate">
<div class="annotation-container">
<select id="annotation" size="0"></select>
</div>
</section>
<footer>
<div class="tag-edit">
<label>Annotation:
<input id="tags" type="text" placeholder="Tag A; Tag B; Tag C">
</label>
</div>
<div id="output"></div>
<div class="footer">AxLE WebBluetooth</div>
</footer>
</body>
</html>