This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues or pull requests.
score-tracker/public/scripts/main.js
2021-11-26 12:37:09 -07:00

14 lines
No EOL
376 B
JavaScript

const logInButton = document.getElementById('login-button');
const logOutButton = document.getElementById('logout-button');
if(logInButton) {
logInButton.addEventListener('click', () => {
window.location.href = "/auth/login";
});
}
if(logOutButton) {
logOutButton.addEventListener('click', () => {
window.location.href = "/auth/logout";
});
}