From f31c3a52114c1ea4f2919cc0355a43c64e59ec1d Mon Sep 17 00:00:00 2001 From: Michael <109037087+mikeyCos@users.noreply.github.com> Date: Sat, 17 Aug 2024 08:10:22 -0700 Subject: [PATCH] Update project_mini_message_board.md Use a open button or link for message details page. --- nodeJS/express/project_mini_message_board.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeJS/express/project_mini_message_board.md b/nodeJS/express/project_mini_message_board.md index 1cbd2629429..91722f7089c 100644 --- a/nodeJS/express/project_mini_message_board.md +++ b/nodeJS/express/project_mini_message_board.md @@ -49,7 +49,7 @@ At this point you should know enough to use Express to make some fun interactive 1. At the end of the `router.post()` function use `res.redirect("/")` to send users back to the index page after submitting a new message. 1. At this point, you should be able to visit `/new` (it might be a good idea to add a link to that route on your index page), fill out the form, submit it and then see it show up on the index page! -1. Add an "open" button next to every message to open a new page with the message details. +1. Add a "open" button or link next to every message to open a new page with the message details. 1. Push your project to GitHub. 1. You'll learn how to deploy your app to the web in the next lesson, don't forget to come back and submit it to the submissions below once you're done!