notXCS/public/index.html
2026-07-02 15:08:59 +00:00

15 lines
315 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NOTXCS</title>
<script>
fetch('/auth/me').then(r => r.json()).then(data => {
window.location.replace(data.success ? '/dashboard' : '/login');
}).catch(() => window.location.replace('/login'));
</script>
</head>
<body>
</body>
</html>