1
0
Fork 0
forked from goffee/cup
cup/storage/public/app.js

14 lines
350 B
JavaScript
Raw Normal View History

2024-10-29 13:44:51 -04:00
console.log("Start Goffee app");
let elem = document.querySelector('#signout');
if (elem) {
document.getElementById("signout").onclick = (_event) => {
fetch('/signout').then(response => response.json())
.then(data => {
if (data['message'] == "signed out successfully") {
// Refresh the page
location.reload();
}
})
};
}