8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
function checkUserLoggedIn() {
|
|
const body = document.body;
|
|
if (!body) {
|
|
return false;
|
|
}
|
|
|
|
return body.getAttribute('data-user-status') === 'logged-in';
|
|
}
|