Mass UI Updates

This commit is contained in:
2025-12-15 14:54:29 -06:00
parent cf1ffac9ee
commit 13bb6542bc
11 changed files with 3060 additions and 121 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ async function login(email, password) {
*/
function logout() {
pb.authStore.clear();
window.location.href = 'index.html';
window.location.href = 'index';
}
/**
@@ -26,7 +26,7 @@ function logout() {
*/
function checkAuth() {
if (!pb.authStore.isValid) {
window.location.href = 'index.html';
window.location.href = 'index';
return false;
}
return true;