The problem you receive is becaus you did not import the Formsmodule into your module and because of this ngModel is not recognized as a property of input.
Add following import to your module:
@NgModule({
imports: [
[...]
FormsModule
],
[...]
})