Skip to content

Commit 80cd12f

Browse files
authored
Update index.html
1 parent 8b316fd commit 80cd12f

File tree

1 file changed

+5
-14
lines changed

1 file changed

+5
-14
lines changed

index.html

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@
6565

6666
if (u === correctUsername && p === correctPassword) {
6767
document.getElementById('m').style.display = 'block';
68-
} else {
69-
triggerFakeChecks();
7068
}
7169
}
7270

@@ -75,7 +73,7 @@
7573
}
7674

7775
function psdd() {
78-
return atob("cGFzc3dvcmQxMjM="); // Decodes the base64 password
76+
return atob("cGFzc3dvcmQxMjM=");
7977
}
8078

8179
function MathOperations() {
@@ -102,7 +100,7 @@
102100
hash = (hash << 5) - hash + char;
103101
hash = hash & hash; // 32bit integer
104102
}
105-
fakeEncryption(hash.toString());
103+
encryp(hash.toString());
106104
}
107105

108106
function encryp(value) {
@@ -119,19 +117,12 @@
119117
let nd1 = true;
120118
let d2 = false;
121119
let crray = [1, 2, 3, 4, 5, 6];
122-
let ect = { a: 1, b: 2, c: 3, d: "test" };
123-
124-
for (let i = 0; i < 50; i++) {
125-
unusedVar1 += String.fromCharCode(i);
126-
unusedVar2 += i * i;
127-
}
128-
120+
let ect = { a: 1, b: 2, c: 3, d: "testpassword" };
121+
129122
let evenMore = () => {
130-
let placeholder = "This is fake!";
123+
let pler = "e!";
131124
let value = Math.random() * 100000;
132125
for (let i = 0; i < 10; i++) {
133-
value += Math.sin(value) * i;
134-
placeholder += String.fromCharCode(65 + i);
135126
}
136127
};
137128

0 commit comments

Comments
 (0)