Route Kommentare hinzugefügt.

This commit is contained in:
gitfreeking 2025-05-01 09:00:43 +02:00
parent b01a2fee0a
commit bef2da62d4
2 changed files with 4 additions and 2 deletions

View File

@ -190,6 +190,7 @@
}
</script>
<!-- Footer wird dynamisch geladen -->
<div id="footer"></div>
</div>

View File

@ -16,7 +16,7 @@ router.get('/registrieren', (req, res) => {
res.sendFile(path.join(__dirname, '../../../public/registrieren/registrieren.html'));
})
// Route - HeaderFooter
// Route - HeaderFooter Skript
router.get('/header_footer', (req, res) => {
res.sendFile(path.join(__dirname, '../../../scripts/einfügenHeaderFooter.js'));
})
@ -66,13 +66,14 @@ router.get('/bestellformular', (req, res) => {
res.sendFile(path.join(__dirname, '../../../public/bestellformular/bestellformular.html'));
})
// Route - Bestellungen
router.get('/bestellung', (req, res) => {
res.sendFile(path.join(__dirname, '../../../public/bestellung/bestellung.html'));
})
// Route - Kontaktformular
router.get('/kontaktformular', (req, res) => {
res.sendFile(path.join(__dirname, '../../../public/kontaktformular/kontaktformular.html'));
})
module.exports = router;