-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (62 loc) · 3.95 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
<!--
* The official website we use for SixCord Discord Bot web & dashboard.
* <https://github.com/SixCord/invite/>
* Copyright (C) 2021 SixCord
-->
<!DOCTYPE html>
<html lang='en_US'>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>SixCord — Invite</title>
<!-- Meta Tags -->
<meta name="title" content="SixCord — Invite"/>
<meta name="description" content="Build the best Discord server with SixCord. Leveling, auto-moderation & more features."/>
<meta name="keywords" content="sixcord, sixcord bot, sixcord the discord bot, sixcord discord bot, sixcord web, sixcord dashboard, sixcord api, sixcord features, sixcord commands, sixcord help, help sixcord, sixcord support server, sixcord server, sixcord discord, sixcord status, sixcord docs, sixcord documentation, sixcord premium, sixcord development, sixcord developers, discord bot, bot development, discord bot development, discord bots"/>
<meta name="theme-color" content="#202024"/>
<!-- Icons -->
<link rel="icon" type="image/png" href="https://cdn.sixcord.xyz/attachments/sixcord.png">
<!-- Canonical -->
<link rel="canonical" href="https://invite.sixcord.xyz/"/>
<meta name="canonicalURL" content="https://invite.sixcord.xyz/"/>
<!-- Twitter meta -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@SixCordBot"/>
<meta name="twitter:creator" content="@SixCordBot"/>
<meta name="twitter:title" content="SixCord — Invite"/>
<meta name="twitter:description" content="Build the best Discord server with SixCord. Leveling, auto-moderation & more features."/>
<meta name="twitter:image" content="https://cdn.sixcord.xyz/attachments/sixcord.png"/>
<meta name="twitter:url" content="https://invite.sixcord.xyz/"/>
<!-- OG Meta Tags -->
<meta prefix="og: http://ogp.me/ns#" property="og:title" content="SixCord — Invite"/>
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="website"/>
<meta prefix="og: http://ogp.me/ns#" property="og:locale" content="en_US"/>
<meta prefix="og: http://ogp.me/ns#" property="og:site_name" content="SixCord — The Discord Bot"/>
<meta prefix="og: http://ogp.me/ns#" property="og:description" content="Build the best Discord server with SixCord. Leveling, auto-moderation & more features."/>
<meta prefix="og: http://ogp.me/ns#" property="og:url" content="https://sixcord.xyz/"/>
<meta prefix="og: http://ogp.me/ns#" property="og:image" content="https://cdn.sixcord.xyz/attachments/sixcord.png"/>
<!-- Theme -->
<link type='text/css' rel='stylesheet' href='css/main.css'>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "6894bbd8b4a3426b871da0a8162ec67f"}'></script><!-- End Cloudflare Web Analytics -->
</head>
<body id="body">
<h1 class="no-redirect"> Not being redirected? <a href="https://discord.com/oauth2/authorize?client_id=788801745752293386&permissions=269675574&scope=bot">Click here</a> </h1>
<p class="info"> You will be redirected to our home in <b><span id="countdown">15</span></b> seconds </p>
<noscript>
You need to enable JavaScript.
</noscript>
<script>
function pageRedirect() {
window.location.replace("https://sixcord.xyz/");
}
setTimeout("pageRedirect()", 15000);
var seconds = document.getElementById("countdown").textContent;
var countdown = setInterval(function() {
seconds--;
document.getElementById("countdown").textContent = seconds;
if (seconds <= 0) clearInterval(countdown);
}, 1000);
window.open("https://discord.com/oauth2/authorize?client_id=788801745752293386&permissions=269675574&scope=bot", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=500,height=600");
</script>
</body>
</html>