Initial commit

This commit is contained in:
2025-05-29 12:33:41 +03:00
commit 5d994126cb
19 changed files with 4618 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const logout = document.getElementById("logout");
logout.onmouseenter = async function () {
this.style.backgroundColor = "blue";
};
logout.onmouseleave = async function () {
this.style.backgroundColor = "";
};
logout.onmousedown = async function () {
this.style.backgroundColor = "red";
};
logout.ondblclick = async function () {
this.style.backgroundColor = "blue";
window.location.href = `${window.location.protocol}//logout@${window.location.host}/`;
};