Self-Evaluating Assignment 1 (Week 2)
Task
Create a simple form in HTML with fields name, age, email, city and a submit button the task is to handle the submit (POST) request of the form using Nodejs. Try to console.log the form details in JSON format using Nodejs.
Use of Expressjs is not allowed. You can use javascript methods for string manipulation.
Expected Output
{
name: "Pavan",
age: 20,
email: "pavangandhi100@gmail.com",
city: "Delhi",
}