From 1e8ae72ed44b031a05296c0609974d902dee96e9 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 14 Nov 2025 14:04:47 +0000 Subject: [PATCH] added feedback --- app/src/Server.js | 8 +- public/views/feedback.html | 318 +++++++++++++++++++++++++++++++++++++ 2 files changed, 322 insertions(+), 4 deletions(-) create mode 100644 public/views/feedback.html diff --git a/app/src/Server.js b/app/src/Server.js index 53d50560..310197ba 100644 --- a/app/src/Server.js +++ b/app/src/Server.js @@ -305,7 +305,7 @@ const s3Client = new S3Client({ // html views const views = { html: path.join(__dirname, '../../public/views'), - about: path.join(__dirname, '../../', 'public/views/about.html'), + feedback: path.join(__dirname, '../../', 'public/views/feedback.html'), landing: path.join(__dirname, '../../', 'public/views/landing.html'), login: path.join(__dirname, '../../', 'public/views/login.html'), activeRooms: path.join(__dirname, '../../', 'public/views/activeRooms.html'), @@ -807,9 +807,9 @@ function startServer() { // }); // Lika2 about - // app.get('/about', (req, res) => { - // res.sendFile(views.about); - // }); + app.get('/feedback', (req, res) => { + res.sendFile(views.feedback); + }); // // Get stats endpoint // app.get('/stats', (req, res) => { diff --git a/public/views/feedback.html b/public/views/feedback.html new file mode 100644 index 00000000..7d5d1ae0 --- /dev/null +++ b/public/views/feedback.html @@ -0,0 +1,318 @@ + + + + + + CodePill - 404 Page Not Found + + + + +
+ + +
404
+ +

Page Not Found

+ +

+ The page you're looking for seems to have disappeared. It might have been moved, deleted, + or perhaps you entered the wrong URL. +

+ +
+
+
+
+
+
+
+
+ + + +
+

© 2025 CodePill. All rights reserved.

+
+
+ + + + \ No newline at end of file