-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
61 lines (52 loc) · 1.38 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
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>I SEENT IT!</title>
<link href="options.css" rel="stylesheet">
<style id="yolo"></style>
</head>
<body>
<h1>I SEENT IT!</h1>
<div class="tabs">
<div class="tab active" data-tab="film">Films</div>
<div class="tab" data-tab="series">Series</div>
<div class="tab" data-tab="options">Options</div>
</div>
<form>
<fieldset>
<label for="sort">Sort:</label>
<select id="sort" name="sort">
<option value="YEAR" selected>Year</option>
<option value="TITLE">Title</option>
<option value="BEST">Best</option>
<option value="WORST">Worst</option>
</select>
</fieldset>
<fieldset>
<label for="filter">Filter:</label>
<input id="filter" name="filter">
</fieldset>
</form>
<div class="tab-pane active" data-tab="film">
<p>Loading...</p>
</div>
<div class="tab-pane" data-tab="series">
<p>Loading...</p>
</div>
<div class="tab-pane" data-tab="options">
<div class="btn btn-export">Export CSV</div>
<div class="btn btn-import">Import CSV</div>
<div class="btn btn-clear">Clear All Data</div>
<p>CSV example:</p>
<pre>
Type,Year,Title,Rewatchability,Artistic Merit
FILM,1999,"The Green Mile",4,4
FILM,2016,"Hail, Caesar!",1,3
FILM,2045,"Alice, Bob, and Carol Say \"Cheese!\"",1,1
SERIES,2008,"Breaking Bad",5,5
</pre>
</div>
<input id="file" type="file" hidden>
<script src="options.js"></script>
</body>
</html>