New commit

-  Added ban checking ⚖️
    -  GUI 🪟
    -  HWID Checking/Creating module ⚙
This commit is contained in:
2025-04-26 11:06:59 +02:00
parent 3a81447b9c
commit 6c4948d0b2
8 changed files with 236 additions and 1 deletions

11
app/assets/js/banned.js Normal file
View File

@@ -0,0 +1,11 @@
function setBannedBy(banner) {
document.querySelector("#bannedBy").innerText = banner
}
function setBannedAt(date) {
document.querySelector("#bannedAt").innerText = date
}
function setBannedBecause(reason) {
document.querySelector("#bannedBecause").innerText = reason
}