Comment afficher une page HTML une seule fois
if (localStorage.getItem("visited")) {
window.location.href = "webPlatform.html";
}
localStorage.setItem("visited", "true");
Zeevx