Socialify

Folder ..

Viewing logout.js
5 lines (5 loc) • 125.0 B

1
2
3
4
5
function logout(event) {
    event.preventDefault();
    localStorage.removeItem("token");
    window.location.href = "/";
}