-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
36 lines (27 loc) · 867 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body>
<form action = "/form-page" method = "post">
<label for = 'URL'>URL:</label> <input type="text" id = "URL" name="site_url">
<button type = "submit" id = 'subButton'>Submit</button>
</form>
<p class = 'message'>By default, each website is unblocked for 15 minutes every 30 minutes. Click Configure to change this.</p>
<div id = "grid-containor">
</div>
<button id = 'configButton'>Configure</button>
<button id = 'history'>View Frequent Websites</button>
<div id = 'historyDiv'>
<a href = 'javascript:void(0)' class = 'closeBtn'>×</a>
<table id = 'histTable'>
<tr>
<th>Website Name</th>
<th>Time Spent (mins)</th>
</tr>
</table>
</div>
<script src = "popup.js"></script>
</body>
</html>