-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (38 loc) · 1.09 KB
/
index.html
File metadata and controls
45 lines (38 loc) · 1.09 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
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Z-Wave JS: Online NVM editor</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Z-Wave JS: Online NVM editor</h1>
<div class="toolbar">
<button id="btnLoad" class="button-9">Open NVM File</button>
<input type="file" id="file" accept=".bin" style="display: none;"" />
<button id="btnSave" class="button-9">Save modified NVM</button>
</div>
<div class="input">
<span>NVM type:</span>
<input
type="text"
readonly
id="nvm_type"
style="justify-self: flex-start"
/>
<span>Protocol version:</span>
<input
type="text"
id="protocol_version"
style="justify-self: flex-start"
/>
<textarea
id="json"
style="grid-column: 1 / -1; min-height: 500px"
></textarea>
<div id="error-message"></div>
</div>
<script type="module" src="build/script.js"></script>
</body>
</html>