Forms
Template-driven: ngModel on the fields, FormsModule. Fast for a tiny name+roll form. Reactive: FormGroup / FormControl in TS, ReactiveFormsModule. Better when validators grow.
Board: name required, roll number. Invalid → Save disabled. Don’t trust the UI — validate again on the server. Trap: mixing ngModel and FormControl on the same input.
Exam tip
When ngModel vs FormGroup. One required validator.