Update Design

This commit is contained in:
2025-09-03 12:10:35 +02:00
parent 3b85aa8cd4
commit 1d3d076a1d
5 changed files with 279 additions and 87 deletions

View File

@@ -123,6 +123,15 @@ app.get('/login', (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'login.html'));
});
/**
* Admin Dashboard Page
* Dashboard-Seite für eingeloggte Administratoren
* Authentifizierung wird client-side über Supabase gehandhabt
*/
app.get('/dashboard', (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'dashboard.html'));
});
// ============================================================================
// STATIC FILE SERVING
// ============================================================================