Add linking of RFID with camera

This commit is contained in:
2025-09-03 16:42:18 +02:00
parent 33f3f613e6
commit e4f6218066
6 changed files with 1597 additions and 5 deletions

View File

@@ -141,6 +141,14 @@ app.get('/reset-password.html', (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'reset-password.html'));
});
/**
* Admin Login Page
* Lizenzgenerator Login-Seite für Admin-Benutzer
*/
app.get('/adminlogin.html', (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'adminlogin.html'));
});
// ============================================================================
// STATIC FILE SERVING
// ============================================================================