forked from yxliang01/Unimelb-WAM-Checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
49 lines (46 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="bower_components\jquery\dist\jquery.min.js"></script>
<script type="text/javascript" src="bower_components\semantic\dist\semantic.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
<link rel="stylesheet" href="bower_components\semantic\dist\semantic.min.css">
</head>
<body>
<button id="StartChecking" class="ui button">Start automatically checking WAM</button>
<div class="ui checkbox">
<input type="checkbox" name="OnlyWhenIncrease">
<!-- <label>Notify only when my WAM increases<i class="heartbeat icon"></i></label> -->
</div>
<div id="dimmer_successful" class="ui dimmer">
<div class="content">
<div class="center">
<h2 class="ui inverted icon header">
<i class="sticky note icon"></i>
When you don't want to monitor, just close the tab of your result. <br /> (aka Don't close that tab)
</h2>
</div>
</div>
</div>
<div id="dimmer_fail" class="ui dimmer">
<div class="content">
<div class="center">
<h2 class="ui inverted icon header">
<i class="remove circle icon"></i>
You have to open the my.unimelb page which shows your results of all the subjects
</h2>
</div>
</div>
</div>
<div id="Monitoring" class="ui dimmer">
<div class="content">
<div class="center">
<h2 class="ui inverted icon header">
<i class="checkmark icon"></i>
You WAM is currently being monitored. <br /> Just wait for it~
</h2>
</div>
</div>
</div>
</body>
</html>