This repository was archived by the owner on Feb 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbotinvite.php
More file actions
54 lines (46 loc) · 1.52 KB
/
Copy pathbotinvite.php
File metadata and controls
54 lines (46 loc) · 1.52 KB
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
<?php
include 'header.php';
?>
<!doctype html>
<html prefix="og: https://ogp.me/ns#">
<head>
<link href="./index.css" rel="stylesheet" type="text/css" media="all">
<meta property="og:title" content="Kaizer's Invite Page" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kaizer.ga/botinvite.php" />
<meta charset="UTF-8">
<link rel="apple-touch-icon"/>
<meta name="format-detection"/>
<meta name="HandheldFriendly"/>
<meta name="viewport"/>
<meta http-equiv="Expires"/>
<meta http-equiv="X-UA-Compatible"/>
<title>Kaizer's Site</title>
</head>
<body class="body">
<center>
<h2>these are the invites for the bot:</h2>
<br>
<script>
function openInNewTab(url) {
var win = window.open(url, '_blank');
win.focus();
}
function admin1() {
openInNewTab("https://discord.com/oauth2/authorize?client_id=1007806243676622889&scope=bot&permissions=8");
}
function admin2() {
openInNewTab("https://discord.com/oauth2/authorize?client_id=1007806243676622889&scope=bot&permissions=1644971949559");
}
function goBack() {
window.location.href="https://kaizer.ga/index.php";
}
</script>
<button onclick="admin1()" style="height:99px;width:500px"> Click For Admin Invite </button>
<br><br>
<button onclick="admin2()" style="height:99px;width:500px"> Click For Non-Admin Invite </button>
<br><br>
<button onclick="goBack()" style="height:99px;width:500px"> Click To Go Home </button>
</center>
</body>
</html>