-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindexarchive.txt
41 lines (32 loc) · 1009 Bytes
/
indexarchive.txt
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
<html>
<title>monkey3three</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<body>
<center>
<input type="password" placeholder="passcode" id="tutorial">
<button onclick="protectpasscode()">CHECK</button>
<script>
function protectpasscode() {
const result = document.getElementById("tutorial").value;
let passcode = 12345;
let space = '';
if (result == space) {
alert("Type passcode")
} else {
if (result == passcode) {
window.open("https://monkey3three.github.io/unblocked88.github.io/index2.html");
} else {
alert("Incorrect Passcode");
location.reload();
}
}
}
</script>
</center>
</body>
</html>
<style>
body {
background-color: white;
}
</style>