-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self';">
<title>MIDI <--> SERIAL PORT BRIDGE</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
<div class="container">
<div class="inputWrapper">
<label>Serial port</label>
<select id="portSelection" disabled="disabled">
<option selected value> -- select an option -- </option>
</select>
</div>
<div class="inputWrapper">
<label>Baud rate</label>
<select id="baudRateSelection" disabled="disabled">
<option disabled selected value> -- select an option -- </option>
</select>
</div>
<div class="inputWrapper">
<label>MIDI output</label>
<select id="outputSelection" disabled="disabled">
<option selected value> -- select an option -- </option>
<option value="__virtualOutput">Virtual MIDI output</option>
</select>
</div>
<div class="inputWrapper">
<label>MIDI input:</label>
<select id="inputSelection" disabled="disabled">
<option selected value> -- select an option -- </option>
<option value="__virtualInput">Virtual MIDI input</option>
</select>
</div>
<label>
<input type="checkbox" id="bridgeToggle" disabled="disabled"> Bridge enable
</label>
</div>
<!-- You can also require other files to run in this process -->
<script src="./dist/renderer.js"></script>
</body>
</html>