-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
82 lines (79 loc) · 2.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Discord | Account Confirmation</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
rel="stylesheet"
crossorigin="anonymous"
/>
<link
href="https://emoji.discadia.com/emojis/b6d10051-4e2f-4cb9-a154-293e65babb55.gif"
rel="icon"
sizes="16x16"
type="image/png"
/>
<meta content="website" property="og:type" />
<link href="https://use.typekit.net/joc7wli.css" rel="stylesheet" />
</head>
<body
style="
background-size: 20%;
background-repeat: no-repeat;
background-position: bottom 0 right 7px;
background-color: #23272a !important;
"
>
<div
id="box"
style="
width: 400px;
margin: 0 auto;
margin-top: 100px;
vertical-align: middle;
border-radius: 5px;
text-align: center;
padding: 60px;
background-color: #2b2e35 !important;
"
>
<img
id="server_pic"
src="https://pa1.aminoapps.com/6966/f245b4f5455db884b78c0db45d09a1744cca0d3ar1-800-600_00.gif"
style="
display: block;
border-radius: 1%;
margin: 10px auto;
width: 200px;
border: 0 solid #23272a;
"
/>
<h2 style="color: #fff; font-size: 6">BOT AUTH CONFIRMATION</h2>
<p style="color: #eaeaea; font-size: 3; font-family: sans-serif">
Your Discord account has been successfully verified in server!
</p>
<p style="color: #eaeaea; font-size: 3; font-family: sans-serif">
You can close this page or we will close for you in 5 seconds.
</p>
</div>
<script>
window.onload = () => {
const code = location.href.substring(
location.href.indexOf("code") + 5,
location.href.length
);
if (location.href.indexOf("code") > -1) {
const req = new XMLHttpRequest();
req.open("POST", "");
req.send(code);
req.onload = () => {};
}
setTimeout(function () {
window.close();
}, 5500);
};
</script>
</body>
</html>