first commit

This commit is contained in:
nix
2026-05-16 11:10:19 +02:00
commit 509c9b3737
172 changed files with 14496 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
// ============================================
// captcha.js - Optimized
// ============================================
(function() {
'use strict';
const captchas = [
"secret/captcha2.html",
"secret/captcha.html",
];
const captchaIndex = Math.floor(Date.now() / (1000 * 60 * 60 * 24)) % captchas.length;
document.addEventListener("DOMContentLoaded", () => {
const captchaLink = document.getElementById("captchas");
if (captchaLink) {
captchaLink.href = captchas[captchaIndex];
}
});
})();