Registration number form & list

Change your registration number web application to add new entries, entered in a text field, to a list when the Add button is pressed. If the registration number text field is blank and the Add button is pressed nothing should be added to the list.
You need to use a HTML form to send the registration number to be added to the server. Newly added registration numbers should be displayed below your form.
Setup
In your ExpressJS application add:
- A GET route called
/reg_numbers - Add a POST route called
/reg_numbers
Required skills
ExpressJS
- Adding HTTP POST routes
- Adding middleware to allows form parameters to be read from the HttpRequest object in your route.
- Storing a data in a global variable in ExpressJS
- Create & render data using Handlebars
Handlebars
- Render a list of data into HTML
- Combining various different HTML elements and Data Types using Handlebars.