-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
35 lines (32 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div id="main-container">
<div id="settings-container">
<div id="num-display">
<label for="reload-int-display">Refresh interval</label>
<p id="reload-int-display">10</p>
</div>
<input type="range" min="1" max="60" value="10" id="reload-int-input" />
<div class="unit-switch">
<input type="radio" value="sec" id="sec" name="unit" checked >
<label for="sec">Seconds</label>
<input type="radio" value="min" id="min" name="unit" >
<label for="min">Minutes</label>
</div>
</div>
<div id="on-switch-container">
<label class="on-switch">
<input type="checkbox" id="active"/>
<span class="toggle"></span>
</label>
<label id="on-switch-label" for="active">OFF</label>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>