develop #50

Merged
vex merged 21 commits from develop into main 2025-05-01 14:29:43 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 2784c0f2c6 - Show all commits

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;