-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
executable file
·36 lines (33 loc) · 1.27 KB
/
settings.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sound Machine Settings</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="css/settings.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="close">Close</div>
<div id="settings-screen" class="container-fluid">
<div class="row">
<div class="col-xs-12">
<h2>Settings</h2>
<p>Modifier keys for global shortcuts</p>
<p>
<input type="checkbox" class="global-shortcut" id="global-shortcut-ctrl" data-modifier-key="ctrl" />
<label for="global-shortcut-ctrl">Ctrl</label>
</p>
<p>
<input type="checkbox" class="global-shortcut" id="global-shortcut-shift" data-modifier-key="shift" />
<label for="global-shortcut-shift">Shift</label>
</p>
<p>
<input type="checkbox" class="global-shortcut" id="global-shortcut-alt" data-modifier-key="alt" />
<label for="global-shortcut-alt">Alt</label>
</p>
</div>
</div>
</div>
<script src="./settings.js"></script>
</body>
</html>