Search code examples
angularngmodel

Erreur: Can't bind to 'ngModel' since it isn't a known property of 'input'. Besoin d'aide


Here I still have this error, I did what I found on the doc and on the forums but I have to miss something. Can someone help me

Erreur:
https://i.sstatic.net/3Cct2.png
App.module.ts:
https://i.sstatic.net/YRMvX.png
LoginComponent:
https://i.sstatic.net/K22xF.png

EDIT: I forget to import my loginComponent 🤦‍♂️


Solution

  • Please import your LoginComponent into app.module.ts and update declarations array

    declarations: [
         AppComponent, 
         HomeComponent,
         WelcomeComponent,
         LoginComponent //added
      ],