-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
43 lines (43 loc) · 1.44 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Fileeter</title>
<link rel="stylesheet" href="css/popup.css" />
</head>
<body class="light">
<div class="header">
<h1 id="title">FILEETER</h1>
<button id="themeBtn" class="dark">Dark</button>
</div>
<h2 class="section">Difficulty</h2>
<p class="instruction">Choose difficulty level.</p>
<form>
<div class="difficulty-option easy">
<div class="overlay" id="easyOverlay"></div>
<input id="easyOption" type="checkbox" />
<label for="easyOption">Easy</label>
</div>
<div class="difficulty-option medium" id="mediumOptionBlock">
<div class="overlay" id="mediumOverlay"></div>
<input id="mediumOption" type="checkbox" />
<label for="mediumOption">Medium</label>
</div>
<div class="difficulty-option hard" id="hardOptionBlock">
<div class="overlay" id="hardOverlay"></div>
<input id="hardOption" type="checkbox" />
<label for="hardOption">Hard</label>
</div>
</form>
<h2 class="section">Tag</h2>
<p class="instruction">
Choose problem tag. Click on the selected tag to remove.
</p>
<div id="selectedTags"></div>
<form>
<select id="tagsInput" aria-label="Tag"></select>
</form>
<input id="applyBtn" type="submit" value="Apply" />
<input id="clearBtn" type="submit" value="Clear" />
<script src="js/popup.js"></script>
</body>
</html>