-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
58 lines (48 loc) · 1.21 KB
/
options.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
<!doctype html>
<html>
<head>
<link type="text/css" href="css/fontello.css" rel="stylesheet">
<link type="text/css" href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="options.js"></script>
<title>Re-Chord</title>
</head>
<body>
<div class="mainContent">
<div class="pageHeader">
<h1 id="options-heading" >Re-Chord</h1>
</div>
<div class="contentNav">
<ul>
<li>
<a class="active" href='options.html' >Settings</a>
</li>
<li class="noIncognito">
<a href="list.html">My song list</a>
</li>
<li class="noIncognito">
<a href='shortcuts.html'>Keyboard shortcuts</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</div>
<div class="content">
<div class="sub-section">
<h2>Overall Settings for Re-Chord</h2>
<div class="formRow">
<label id="defaultTabsLbl" class="topLabel" for="defaultTabs">Default number of tabs to open:</label>
<br />
<div>
<input type="number" id="defaultTabs" name="defaultTabs" min="1">
</div>
<br />
<div>
<button id="updateDefault">Update Default</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>