Forms are doing a big job on I/O handling in a web application. Especially in Angular 2 application, we are using the NgForm directive to handling the normal forms with the more advanced feature enabled forms. In Angular 2, They introduced two types of modules to handle the NgForms. They are Template Driven Forms Model Driven Forms to enabling this forms in your application, you need to import some modules. as follow in your root module. Here we are updating two modules from @angular/forms and we put the FormsModule and ReactiveFormsModule in the imports array. After enabling the forms we are going to look after the template driven forms. Template Driven Forms Template Driven Forms are enabling by importing the FormsModule in your app.module.ts, We already show you how to enable it on above snippets. Here when you look on into the app.component.html Every form is an instance of the ngForm directive....