-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.html
33 lines (31 loc) · 1.22 KB
/
test2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AntiBot</title>
<script src="https://cdn.tailwindcss.com/"></script>
</head>
<body>
<div class="flex h-screen justify-center items-center">
<div class="text-center bg-blue-400"> <!-- ⬅️ THIS DIV WILL BE CENTERED -->
<h1 class="text-3xl">Salam-Dari-Binjai-Network.gq</h1>
<p class="text-xl">
Anti Bot Protection, Please Pass The Easy Captcha Challenge.
</p>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script type="text/javascript">
if (recaptcha.getResponse() == "success") {
function Redirect() {
window.location.href = "https://salam-dari-binjai-network.gq/game"; // Correct here
}
document.write("You will be redirected to a new page in 5 seconds ");
setTimeout(Redirect,5000); // Correct here
}
else alert("You can't proceed!");
</script>
<div data-type="image" class="g-recaptcha" data-sitekey="6LcvU2IhAAAAALF80dGpEkMljE08dWeLHalO7s32"></div>
</div>
</body>
</html>