Greet web form

Greetings web form
Create a web form that allows you to enter a name and when the submit button is pressed display a greeting like this : Hello, <THE NAME ENTERED>. After the button is pressed the name should be removed from the text box. Add some basic styling to the page. Create a route called greetings for this page.
Required skills
ExpressJS
Adding middleware:
- Setup a folder for static resources - using
express.static - Enable Form variables body-parser - this enables form parameters retrieval using
req.body
Basic Handlebars templating.