-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.html
74 lines (70 loc) · 1.88 KB
/
background.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Forward with Message</title>
<link rel="stylesheet" type="text/css" href="foundation.min.css">
<link rel="stylesheet" type="text/css" href="background.css">
<style>
table tr{
border-top: 5px solid #333;
padding-top: 10px;
}
</style>
</head>
<body>
<br><br>
<div class="row">
<div class="column small-centered">
<img src="icon2.png" align="middle" style="display: block;margin-left: auto;margin-right: auto;" width="200">
</div>
<h1 align="middle"><b>Forward with Message</b></h1>
<br>
<br>
<div class="column">
<p>*Copy and paste the URL</p>
</div>
</div>
<div class = "row">
<div class = "column small-6">
<label for = "wsb">Website to block:</label>
<input type="text" placeholder = "Paste URL here" id = "b" name="wsb">
</div>
<div class = "column small-6">
<label for = "wss">Website to show:</label>
<input type="text" placeholder = "Paste URL here" id = "s" name="wss">
</div>
<div class="column">
<label for = "msg" >Message to Display</label>
<textarea id = "msg" placeholder = "Your message goes here!"></textarea>
</div>
<div class = "row ">
<div class = "columns small-11 clearfix"></div>
<div class="columns small-1">
<button class = "button right" id = 'sub'>Submit</button>
</div>
</div>
</div>
<br><br>
<div class="row">
<div class="column">
<table class = "hover" id = 'tab'>
<thead>
<tr>
<th>Blocked</th>
<th>Forward</th>
<th>Message</th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="row" style="text-align: center;">
<footer class="column"><a target="_blank" style="color:#222" href="https://facebook.com/nikhiljoshua8">©Nikhil Joshua, 2017.</a></footer>
</div>
<script src="background.js">
</script>
</body>
</html>