forked from NITDgpOS/Fearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
66 lines (63 loc) · 2.43 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<title>music extension</title>
<link href="popup.css" rel="stylesheet" type="text/css">
<script src="popup.js"></script>
</head>
<body>
<div id="header">
<h1><span style="color:#4285f4">F</span><span style="color:#ea4335">e</span><span style="color:#fbbc05">a</span><span style="color:#4285f4">r</span><span style="color:#34a853">c</span><span style="color:#ea4335">h</span></h1></div>
<div id="main">
<form>
<table>
<tr>
<td>
<div id="searchBox" class="card">
<input type="text" name="songname" id="query" placeholder="Search here" />
<button id="searchButton">
<img src="searchIcon.png" alt="Search" id="searchIcon">
</button>
</div>
</td>
</tr>
<tr>
<td>
<div id="searchWarning" style="display: none;">
☢ Please enter search query.
</div>
</td>
</tr>
<tr>
<td>
<div id="suggest">
<div id="suggest-label">
Manga
</div>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<input type="checkbox" name="music" value="music" id="music">
<label for="music" title="Ctrl+Alt+m">Music</label>
<input type="checkbox" name="video" value="video" id="video">
<label for="video" title="Ctrl+Alt+v">Video</label>
<input type="checkbox" name="books" value="books" id="books">
<label for="books" title="Ctrl+Alt+b">Books</label>
</td>
</tr>
<tr>
<td>
<div id="checkboxWarning" style="display: none;">
☢ Please select one or more of the checkboxes.
</div>
</td>
</tr>
<table>
</form>
</div>
<div id="footer">
</div>
</body>
</html>