Files
PayDirt/public/logout.js

7 lines
189 B
JavaScript
Raw Normal View History

2025-11-12 10:13:24 -05:00
document.getElementById("logoutButton").onclick = async e => {
console.log("here");
e.preventDefault();
localStorage.removeItem("token");
2025-11-18 21:16:35 -05:00
window.location.href = "/login"
2025-11-12 10:13:24 -05:00
};