-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
28 lines (27 loc) · 912 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Youtube Pickalen</title>
<link rel="stylesheet" href="popup.css"/>
<script src="popup.js"></script>
</head>
<body>
<label class="label" for="max">Shorter Than (Maximum)</label>
<p class="control">
<input class="input" placeholder="In Minutes" type="text" id="max">
</p>
<label class="label" for="min">Longer Than (Minimum)</label>
<p class="control">
<input class="input" placeholder="In Minutes" type="text" id="min">
</p>
<label class="label" for="bmin">Between (Min-Max)</label>
<p class="control d-flex">
<input class="input mr-1" placeholder="In Minutes" type="text" id="bmin">
<input class="input" placeholder="In Minutes" type="text" id="bmax">
</p>
<div class="btn-group">
<button id="filter-btn" class="button red is-outlined">Show</button>
<button id="reset-btn" class="button red is-outlined">Reset</button>
</div>
</body>
</html>