-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreporter.html
More file actions
118 lines (103 loc) · 2.73 KB
/
reporter.html
File metadata and controls
118 lines (103 loc) · 2.73 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HalalWatch Reporter</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
fieldset {
text-align: center;
}
* {
font-family: Inter;
margin: 0;
padding: 0;
color: white;
all: 0.5s ease;
}
div {
padding: 10px;
}
button {
box-sizing: border-box;
width: 100%;
padding: 10px;
margin-bottom: 5px;
background: #1d1d1d;
border: #3d3d3d solid 1px;
border-radius: 5px;
}
button:hover {
background: #2d2d2d;
border: #4d4d4d solid 1px;
}
hr {
border: #3d3d3d solid 1px;
}
body {
background: #1d1d1d;
}
table {
box-sizing: border-box;
width: 100%;
padding: 10px;
margin-bottom: 5px;
background: #1d1d1d;
border: #3d3d3d solid 1px;
border-radius: 5px;
}
input,
select {
box-sizing: border-box;
width: 100%;
padding: 10px;
margin-bottom: 5px;
background: #2d2d2d;
border: #3d3d3d solid 1px;
border-radius: 5px;
}
</style>
</head>
<body>
<div style="border-top: #2d2d2d solid 1px; height: 40px;">
<img src="logo.png" style="width: 40px; float: left;">
<H1 style="float: right; margin-top: 6px;">HALALWATCH REPORTER</H1>
</div>
<div style="background: #2d2d2d; border-top: #3d3d3d solid 1px; text-align: center;">
<table>
<thead>
<tr>
<th>URL</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<td>
<input type="text" id="title">
</td>
<td>
<select type="text" id="background-audio">
<option>Halal</option>
<option>Haram</option>
</select>
</td>
</tbody>
</table>
<button id="addRow">Add</button>
<br>
<hr><br>
<table id="myTable">
<thead>
<tr>
<th>URL</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script src="addharam.js"></script>
</body>
</html>