-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
49 lines (47 loc) · 1.55 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Xporcle Options</title>
<link href="stylesheets/options.css" rel="stylesheet" />
</head>
<body>
<h1>Xporcle <span id="version">v2.3.1</span></h1>
<h2>Enable or Disable Features Here</h2>
<ul id="optionTree">
<li>
<input class="option" id="useDefaultUsername" type="checkbox" />
<label for="useDefaultUsername">Automatically Enter a Default Username</label>
<ul>
<li class="containsTextInput labelFirst">
<label for="defaultUsername">Default Username:</label>
<input class="dummy" type="text" disabled="true" />
<input class="option" type="text" id="defaultUsername" />
</li>
</ul>
</li>
<li>
<input class="option" id="blurRoomCode" type="checkbox" />
<label for="blurRoomCode">Blur Room Code</label>
</li>
<li class="labelFirst containsTime">
<label for="defaultPollDuration containsTime">Default Poll Duration</label>
<input class="option" id="defaultPollDuration" type="number" value="30" min="10" max="60" />
</li>
<li class="labelFirst containsTime">
<label for="defaultQuizQueueInterval">Default Quiz Queue Interval</label>
<input class="option" id="defaultQuizQueueInterval" type="number" value="60" min="10" max="300" />
</li>
</ul>
<button id="enableAll">Enable all</button>
<button id="disableAll">Disable all</button>
<h2>Manage Saved Rooms</h2>
<ul id="savedRoomsList">
<h3>
<span>Save Name</span>
<span>Username</span>
</h3>
</ul>
<script type="text/javascript" charset="UTF-8" src="options.js"></script>
</body>
</html>