mirror of
https://github.com/Dkunk7/crafters-coven.git
synced 2025-12-11 14:55:22 -06:00
15 lines
415 B
JavaScript
15 lines
415 B
JavaScript
async function logout() {
|
|
const response = await fetch(`api/users/logout`, {
|
|
method: 'post',
|
|
headers: { 'Content-Type': 'application/json' }
|
|
});
|
|
|
|
if (response.ok) {
|
|
document.location.replace(`/`);
|
|
} else {
|
|
alert(response.statusText);
|
|
}
|
|
}
|
|
|
|
// Double check that #logout is actually the right name
|
|
document.querySelector(`#logout`).addEventListener(`click`, logout); |