-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
73 lines (68 loc) · 3.26 KB
/
404.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="signup.css">
<link rel="shortcut icon" href="favicon.png">
<!--meta tags from metatags.io-->
<meta name="title" content="Kahoot! Bot">
<meta name="description"
content="Make up to 150 Kahoot bots to play in your game. Simply type in the game pin, the name of the bot, and how many you want for hours of automated gaming fun!">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://kahootbots.gq/">
<meta property="og:title" content="Kahoot! Bot">
<meta property="og:description"
content="Make up to 150 Kahoot bots to play in your game. Simply type in the game pin, the name of the bot, and how many you want for hours of automated gaming fun!">
<meta property="og:image"
content="favicon.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://kahootbots.gq/">
<meta property="twitter:title" content="Kahoot! Bot">
<meta property="twitter:description"
content="Make up to 150 Kahoot bots to play in your game. Simply type in the game pin, the name of the bot, and how many you want for hours of automated gaming fun!">
<meta property="twitter:image"
content="favicon.png">
<link href="https://fonts.googleapis.com/css?family=Poppins:300&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, height=device-height" />
<title>404 - Kahoot Bot Service - totally legit</title>
<script>
var songs = ["Yes/Run Through The Light", "Yes/Machine Messiah", "lil nas x/old town road", "katy perry/roar", "taylor swift/shake it off","gentle giant/proclamation"]
function sendbots() {
window.location = "/";
}
function init() {
fetch("https://api.lyrics.ovh/v1/" + songs[Math.floor(
(Math.random() * (songs.length - 1)) + 0)])
.then(a => a.json())
.then(response => {
if(response.lyrics.length < 10){
init()
return
}
var lines = response.lyrics.split("\n")
for (var ii = 0; ii < 2; ii++) {
for (i in lines) {
if (lines[i] == null || lines[i] == "" || lines[i] == undefined || lines[i] == "undefined") {
lines.splice(i, 1)
}
}
}
document.getElementById("legit").innerHTML = lines[Math.floor(
(Math.random() * (lines.length - 1)) + 0)]
})
return
}
</script>
</head>
<body onload="init()">
<h1 id="signup">Error 404</h1>
<p style="width: 100%; text-align: center; font-family:sans-serif; font-size: 20px; margin-top: -50px;" id="legit">
</p>
<div class="br"></div>
<div class="openbutton" onclick="sendbots()"><span
style="vertical-align: middle; display: inline-block; line-height: 50px;">Take Me Home</span></div>
<div id="output"></div>
<br><br>
</body>
</html>