15 lines
315 B
HTML
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>
|