1e51ef7def
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/ - 12 code-workspace-Files - STATUS-*.md - viele M/D/R-Änderungen an bereits getrackten Files - .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
22 lines
487 B
HTML
22 lines
487 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>GeoGraSim V2</title>
|
|
<script type="module">
|
|
import { auth } from './assets/js/auth-client.js';
|
|
if (!auth.token) {
|
|
location.replace('./login.html');
|
|
} else if (auth.role === 'student') {
|
|
location.replace('./schueler.html');
|
|
} else {
|
|
location.replace('./teacher.html');
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Wird weitergeleitet …</p>
|
|
</body>
|
|
</html>
|