forked from rahulgi/Blacklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blockedSite.html
46 lines (41 loc) · 1.51 KB
/
blockedSite.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
<!doctype html>
<html>
<head>
<title>Blacklist</title>
<link rel=stylesheet href="bootstrap/css/bootstrap.min.css" type="text/css" >
<!-- JavaScript and HTML must be in separate files for security. -->
</head>
<body>
<table style="width:100%; height:100%; position:absolute; text-align:center;" >
<tr>
<td style="width:100%;">
<table style="margin-left:auto; margin-right:auto;">
<tr>
<td style="min-width:300px; min-height:300px; height:300px; width:300px;" >
<img src="icon.large.png" />
</td>
<td>
<div class="featurette">
<h1 id="blockMessage"></h1>
<h2 style="color: #ff3a88;">Focus on your goals and don't waste time on useless websites.</h1>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="modal fade" id="unlistModal">
<div class="modal-header">
<h3 style="color: #ff3a88;">Take a bit of time to think if you Really want to do this...</h3>
<h4 id="countdown"></h4>
</div>
<div id="unblockBtn" class="modal-footer hide">
<a href="#" id="doUnlist" class="btn btn-danger btn-large" style="display:block;" >Un-blacklist the site</a>
</div>
</div>
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/blockedSite.js"></script>
</body>
</html>