Update Design
This commit is contained in:
@@ -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
|
||||
// ============================================================================
|
||||
|
||||
Reference in New Issue
Block a user