This repository was archived by the owner on Jun 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
31 lines (29 loc) · 1.28 KB
/
script.js
File metadata and controls
31 lines (29 loc) · 1.28 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
document.addEventListener("DOMContentLoaded", function() {
const rules = [
"1. DDoS or Illegal Activities are not permitted on our services.",
"2. No talking about security. Only Femboys Talk are permitted.",
"3. 500 Internal Server Error.",
"4. If It works then it works.",
"5. Your code must be in assembly. And It must be encoded with base64.",
"6. All discussions about java and kotlin are not permitted.",
"7. 404 Not Found.",
"8. https://testing123.notmycode.dev/ will always be offline.",
"9. 401 Unauthorized.",
"10. r/femboy are not permitted. But r/femboys are permitted.",
"11. Only one comment per post.",
"12. Cheese Pizza are not permitted.",
"13. 503 Service Unavailable.",
"14. No talking about politics.",
"15. 403 Forbidden.",
"16. Hello World are not permitted.",
"17. All comments in code must be in uwu speak.",
"18. SSL Certificate is required for everything, Including uhhhhh idk",
"19. 501 Not Implemented."
];
const rulesList = document.getElementById('rules-list');
rules.forEach(rules => {
const li = document.createElement('li');
li.textContent = rules;
rulesList.appendChild(li);
});
});