-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlock.js
48 lines (46 loc) · 1.19 KB
/
lock.js
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
lock/split/
// code for the lock starts below
// code below will only run if text before split is set to "lock"
d = new Date()
hrs = d.getHours();
min = d.getMinutes();
day = d.getDay();
//const sec = d.getSeconds();
//alert(hrs);
//alert(min);
function pass() {
return prompt("Enter Password:","");// "Unlocked during 11:00am to 11:40am GMT+0800 (Singapore Standard Time)");
}
function word() {
while (true) {
if (pass() == "BZssK37k") {
auth = true;
console.log("AUTHENTICATION SUCCESSFUL! ACCESS GRANTED")
break
}else{
alert("ACCESS DENIED")
}
}
}
function breaks() {
return false
let falsed = false;
if (hrs == 11 && min >= 40 && falsed == true) { /*not needed*/
return true
}else if (hrs == 11 && min <= 40) {
return true
}else {
return false
}
}
if (false){//(hrs >= 14 || hrs < 8 || breaks() == true|| day == 0 || day == 6|| auth == true){
console.log("pass not needed as requirent fullfilled");
}else {
if (auth = false){
console.log("AUTHENTICATING...")
alert("This website has been locked");
//alert("You are using this webite during school hours. Pls enter the password to bypass. Current time: " + d);
word()
}
}
//}