forked from swadhinroutray/whatsapp-exfiltration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.27 KB
/
index.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>AutoReply</title>
<link rel="stylesheet" href="src/css/index.css" />
</head>
<body>
<!-- <span id="author">Created With Love by <a href="https://chibuikenwa.com">Chibuike </a></span> -->
<div class="container">
<h1>I'll reply for you!</h1>
<section>
<select placeholder="Group name" id="group_name" required disabled>
<option value="">Fetching Chats</option>
</select>
<textarea
placeholder="What keywords would you like to look for?"
id="values"
required
></textarea>
<br />
<textarea
placeholder="What do you want to reply?"
id="response"
required
></textarea>
</section>
<section><div id="validation"></div></section>
<section>
<button id="kill">Kill All</button>
<button id="status">Activate</button>
<button id="show">Show Active</button>
</section>
<table id="all_active">
<thead>
<th>S/N</th>
<th>Values</th>
<th>Response</th>
<th></th>
</thead>
<tbody></tbody>
</table>
</div>
<script type="text/javascript" src="src/js/index.js"></script>
</body>
</html>