Template-Driven Forms in Angular — a practical guide to Angular template-driven forms with clear examples you can reuse in real projects.
Angular Tutorial Series (69/119). Prefer one article? Read the complete Angular tutorial.
Short description
Fine for simple forms; import FormsModule.
Template-driven
<form #f="ngForm" (ngSubmit)="save(f)">
<input name="email" ngModel required email />
<button [disabled]="f.invalid">Save</button>
</form>