Split absage und zusage bestaetigungsseiten

This commit is contained in:
2025-08-14 19:07:00 +02:00
parent 0a0102f456
commit e060f257d8
3 changed files with 44 additions and 2 deletions

View File

@ -84,7 +84,7 @@ app.post("/post", (req, res) => {
}
);
return res.sendFile("bestaetigung.html", {
return res.sendFile("zusage.html", {
root: path.join(__dirname, "views"),
});
});
@ -126,7 +126,7 @@ app.post("/cancel", (req, res) => {
}
);
return res.sendFile("bestaetigung.html", {
return res.sendFile("absage.html", {
root: path.join(__dirname, "views"),
});
});