From bef2da62d4c7d37149c232e3e924319ec40ba324 Mon Sep 17 00:00:00 2001 From: gitfreeking Date: Thu, 1 May 2025 09:00:43 +0200 Subject: [PATCH] =?UTF-8?q?Route=20Kommentare=20hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/bestellformular/bestellformular.html | 1 + scripts/routes/other/route-index.js | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/public/bestellformular/bestellformular.html b/public/bestellformular/bestellformular.html index 1608d2b..1e990b5 100644 --- a/public/bestellformular/bestellformular.html +++ b/public/bestellformular/bestellformular.html @@ -190,6 +190,7 @@ } + diff --git a/scripts/routes/other/route-index.js b/scripts/routes/other/route-index.js index 6ba00d0..a059c66 100644 --- a/scripts/routes/other/route-index.js +++ b/scripts/routes/other/route-index.js @@ -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; \ No newline at end of file