-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
35 lines (26 loc) · 1.47 KB
/
script.js
File metadata and controls
35 lines (26 loc) · 1.47 KB
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
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("loading").style.display = "flex";
setTimeout(function() {
document.getElementById("loading").style.opacity = "0";
document.getElementById("content").style.display = "block";
setTimeout(function() {
document.getElementById("loading").style.display = "none";
}, 1000);
}, 3000);
});
console.log(`
.##.....##.####.####
.##.....##..##..####
.##.....##..##..####
.#########..##...##.
.##.....##..##......
.##.....##..##..####
.##.....##.####.####
Opened up the console... but why?
Hacker? Don't even try. Multiple security features has already been implemented.
Curious on the source code? It's open source! Find it on my profile (Well, the guy hired to make this website's portfolio) here: https://chainedtears.dev
Of course, the security implementions are included in the source code. Please be a nice guy and if you find any bugs, glitches or security issues, or anything that allows unauthorized access to the paywalled product, please don't abuse and report them to me.
Extreme measures were taken to make sure your payment goes through securely and everything :)
If you've landed here on accident, please don't panic. Just close the Developer tools page and go back!
`);
console.log("Just kidding... zero security features were implemented cuz idk how but u can try if you want ig");