You need to import @angular/forms dependency to your module.
if you are using npm, install the dependency :
npm install @angular/forms --save
Import it to your module :
import {FormsModule} from '@angular/forms';
@NgModule({
imports: [.., FormsModule,..],
declarations: [......],
bootstrap: [......]
})
And if you are using SystemJs for loading modules
'@angular/forms': 'node_modules/@angular/forms/bundles/forms.umd.js',
Now you can use [(ngModel)] for two ways databinding.