-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
62 lines (58 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Abusa Extension</title>
<link rel="stylesheet" type="text/css" href="css/popup.css">
<link rel="stylesheet" type="text/css" href="css/alertbox.css">
<script src="jquery-3.5.1.min.js"></script>
<script src="js/alertbox.js"></script>
<link rel="stylesheet" type="text/css" href="css/bottom.css">
<style type="text/css">
body {
width: 250px;
height: auto;
color: #dddddd;
}
</style>
</head>
<body style="background-color: #30475e;">
<div class="bot">
<label class="glow" style="text-align: center">Abusa</label>
<h4 style="text-align: center"></h4>
</div>
<hr class="hr">
<div class="container">
<b style="font-size: 15px">Do you want to ?</b>
<label>
<input type="radio" id="flag" name="choice" value="flag">
Flag
</label>
<label>
<input type="radio" id="delete" name="choice" value="delete">
Delete
</label>
</div>
<br>
<div class="container" style="height:auto;position: relative;">
<div class="center" style="position: absolute;top: 50%;left: 50%;-ms-transform: translate(-50%,-50%);transform: translate(-50%,-50%);" id="action">
<button id="act" style="justify-content: center;align-items: center;">Abusa!</button>
</div>
</div>
<br>
<hr class="hr">
<div>
<label for="Checkbox"><input id="Check" type="checkbox"/>Check if you want to generate a report</lable>
<p>
<button id="generate" disabled>Generate</button>
</div>
<hr class="hr">
<div class ="bot">
<b style="font-size: 12px">About</b>
<a href="index.html" target="_blank"> <span style="cursor:pointer">Abusa</span></a>
<b style="font-size: 12px">| Any Queries ?</b>
<a href="mailto:teamabusa@gmail.com" target="_blank"> <span style="cursor:pointer">Contact</span></a>
</div>
<script src="js/popup.js"></script>
<script src="js/bottom.js"></script>
</body>
</html>