-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpopup.html
47 lines (43 loc) · 1.79 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
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<!-- Site Properties -->
<title>NCKU Evaluator</title>
<link rel="stylesheet" type="text/css" href="./3rd party/Semantic-UI/semantic.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/custom.css">
<!-- script -->
<script src="./3rd party/JQuery/jquery-3.6.0.min.js"></script>
<script src="./3rd party/Semantic-UI/semantic.min.js"></script>
<script src="./3rd party/fontawesome/af031c5fbb.js"></script>
</head>
<body>
<div class="my-container">
<div class="ui container">
<h2 class="ui center aligned header my-title"><i class="clone icon my-icon"></i></h3>
<div class="ui segments mb-10">
<div class="ui segment my-content">
<div class="field">
<div class="ui toggle checkbox ">
<input type="checkbox" name="nckuhub" tabindex="0">
<label class="">即時取得 <b>nckuhub</b> 資料</label>
</div>
</div>
</div>
<div class="ui segment my-content">
<div class="field">
<div class="ui toggle checkbox ">
<input type="checkbox" name="urschool" tabindex="1">
<label class="">即時取得 <b>urschool</b> 資料</label>
</div>
</div>
</div>
</div>
<h2 class="ui center aligned header my-title mb-20"><a style="color: white;" target="_blank"
href="https://github.com/ncchen99/NCKU-Evaluator"><i class="fab fa-github-square"></i></a></h2>
</div>
</div>
</body>
</html>