-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
42 lines (39 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="info.css">
<title>GitHubHelper</title>
</head>
<body style="min-width: 300px;">
<h2>GitHubHelper</h2>
<span>
<button id="setting">Setting</button>
</span>
<label class="switch">
<input type="checkbox" id="dark_mode">
<span class="slider round"></span>
</label>
<div>
<form id="filter-form">
<div>
<input type="text" name="search" id="search" placeholder="Search">
</div>
<div>
<input type="checkbox" name="only_mine" id="only_mine" value="only_mine">
<label for="only_mine">Only show my repos</label>
</div>
<div>
<input type="checkbox" name="fullname" id="fullname" value="fullname">
<label for="fullname">Show fullname</label>
</div>
</form>
<button id="clear_filter">Clear Filter</button>
</div>
<div id="container" class="container"></div>
<script src="popup.js" type="module"></script>
</body>
</html>