implemented spaces, fixed login and signup, thought creation and space creation.

This commit is contained in:
2025-05-26 13:00:12 -06:00
parent 54a01f0f1f
commit d3fa1733f4
32 changed files with 1499 additions and 1132 deletions
+21
View File
@@ -0,0 +1,21 @@
const stdModal = document.querySelector("#stdModal");
let modalContent = document.querySelector(".modalContent");
function openModal(html) {
stdModal.innerHTML = html;
stdModal.style.display = "flex";
modalContent = document.querySelector(".modalContent");
window.addEventListener("click", () => {
closeModal();
});
modalContent.addEventListener("click", (e) => {
e.stopPropagation();
});
}
function closeModal() {
stdModal.innerHTML = "";
stdModal.style.display = "none";
}