Uncaught Error: Template parse errors: Can't bind to 'ngModel'
Try to import FormModule an app.module.ts file
import { FormsModule } from '@angular/forms'
@NgModule({
  declarations: [
    ....
  ],
  imports: [
    ...,
    FormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
