-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
30 lines (28 loc) · 1.14 KB
/
admin.php
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
<!DOCTYPE html>
<html>
<head>
<meta name="robots" content="noindex">
<title>PHPChat: Admin panel</title>
<meta name="description" content="PHPChat: A no-faff simple chatroom" />
<link rel="stylesheet" href="style.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#2d89ef">
<meta name="theme-color" content="#ffffff">
<body>
<script type="text/javascript">
var password = "admin123123";
var x = prompt("Enter in the password ","Enter password here (not case-sensitive)");
if (x.toLowerCase() == password) {
alert("Come right in \n \n You've entered in the right password");
window.location = "adminenteredstevejobs42069gooodluckgettingintohereyouloser.html";
}
else {
window.location = "index.php";
}
</script>
</body>
</html>