Compare commits

..

No commits in common. "2784c0f2c6df65f6b9e7d416ea6581a3d99f8903" and "b01a2fee0ad53c774583ea8987cf3dee36789ec3" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View File

@ -190,7 +190,6 @@
}
</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 Skript
// Route - HeaderFooter
router.get('/header_footer', (req, res) => {
res.sendFile(path.join(__dirname, '../../../scripts/einfügenHeaderFooter.js'));
})
@ -66,14 +66,13 @@ 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;