forked from getsquared-xyz/Player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kicked.html
37 lines (34 loc) · 1.13 KB
/
kicked.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href='./style.css' rel='stylesheet' type='text/css'>
<title>Kicked!</title>
</head>
<body>
<section id="main">
<div id="main-title">Oh Noes!</div>
<p id="nickLabel">It looks like you've been kicked. <br> Reason: <span id="Reason">Null</span></p>
<a href="./index.html">Go Back Home</a>
</section>
<script>
qs = (function(a) {
if (a == "") return {};
var b = {};
for (var i = 0; i < a.length; ++i)
{
var p=a[i].split('=', 2);
if (p.length == 1)
b[p[0]] = "";
else
b[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " "));
}
return b;
})(window.location.search.substr(1).split('&'));
document.getElementById("Reason").innerHTML = qs["r"];
</script>
<script type="text/javascript"> var infolinks_pid = 2824246; var infolinks_wsid = 0; </script> <script type="text/javascript" src="http:////resources.infolinks.com/js/infolinks_main.js"></script>
</body>
<footer>
</footer>
</html>