Angular is giving me the following errors even though I have FormsModule imported.
Error: src/app/user/user.component.html:9:26 - error NG8003: No directive found with exportAs
'ngForm'.
<form #signinForm="ngForm">
Error: src/app/user/user.component.html:25:48 - error NG8002: Can't bind to 'ngModel' since it
isn't a known property of 'input'.
title="Password" name="password" [(ngModel)]="user.password" #password="ngModel"
name='password' required>
I have FormsModule imported in user.module.ts:
@NgModule({
imports: [
FormsModule
]
})
export class UserModule { }
I also tried importing it in app.modules to no avail.