All Games
Loading more games...
✖
import { auth } from "./firebase.js";
import { onAuthStateChanged, signOut }
from "https://www.gstatic.com/firebasejs/10.7.1/firebase-auth.js";
const profileImg = document.getElementById("profileImg");
const profileMenu = document.getElementById("profileMenu");
onAuthStateChanged(auth, user => {
if (!user) {
location.href = "login.html";
} else {
profileMenu.innerHTML = `
${user.email}
Profile
`;
}
});
profileImg.addEventListener("click", () => {
profileMenu.style.display =
profileMenu.style.display === "block" ? "none" : "block";
});
window.logout = function () {
signOut(auth).then(() => location.href="login.html");
};
document.addEventListener("click", e => {
if (!e.target.closest(".profile-container")) {
profileMenu.style.display = "none";
}
});