District 5 AA
// Show role-based dropdowns
if (userData.user_type === 'gsr' || userData.user_type === 'admin') {
gsrToolsDropdown.style.display = 'block';
}
if (userData.user_type === 'admin' || userData.user_type === 'committee_chair') {
adminToolsDropdown.style.display = 'block';
}
authLink.href = '#';
authLink.innerHTML = '
Logout';
authLink.onclick = function(e) { e.preventDefault(); logout(); };
authLink.title = `Logged in as ${userData.description}`;
}
} catch (e) { clearAuthCookie(); }
}
}
function getCookie(name) {
const value = `; ${document.cookie}`;
const parts = value.split(`; ${name}=`);
if (parts.length === 2) return parts.pop().split(';').shift();
return null;
}
function logout() {
document.cookie = 'user.verified=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';
sessionStorage.removeItem('userSession');
location.reload();
}
function clearAuthCookie() {
document.cookie = 'user.verified=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';
}