Update site structure, update global js to add domain warning, update SpiderADB

This commit is contained in:
2024-04-19 00:34:22 +02:00
parent eecdf1f2fd
commit 87757fbcee
80 changed files with 248 additions and 75 deletions

View File

@@ -0,0 +1,7 @@
function RandomGIF() {
GifID = Math.floor((Math.random() * 25)/2);
GifURL = "https://octospacc.gitlab.io/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif";
document.body.style.backgroundImage = "url(" + GifURL + ")";
}
window.onload = RandomGIF;