aboutsummaryrefslogtreecommitdiff
path: root/interface/public/logout.js
blob: 401f06d0cf429dfcb71d4f9aab8e55298c82a300 (plain)
1
2
3
4
5
function logout(event) {
    event.preventDefault();
    localStorage.removeItem("token");
    window.location.href = "/";
}