This tutorial shows you how to create a template-driven form whose control elements are bound to data properties, with input validation to maintain data integrity and styling to improve the user experience.
Template-driven forms use two-way data binding to update the data model in the component as changes are made in the template and vice versa.
Angular supports two design approaches for interactive forms. You can build forms by writing templates using Angular template syntax and directives with the form-specific directives and techniques described in this tutorial, or you can use a reactive (or model-driven) approach to build forms.
Template-driven forms are suitable for small or simple forms, while reactive forms are more scalable and suitable for complex forms. For a comparison of the two approaches, see Introduction to Forms
You can build almost any kind of form with an Angular template—login forms, contact forms, and pretty much any business form. You can lay out the controls creatively and bind them to the data in your object model. You can specify validation rules and display validation errors, conditionally enable or disable specific controls, trigger built-in visual feedback, and much more.
This tutorial shows you how to build a form from scratch, using a simplified sample form like the one from the Tour of Heroes tutorial to illustrate the techniques.
Run or download the example app: live example.
This tutorial teaches you how to do the following:
ngModel
to create two-way data bindings for reading and writing input-control values.Before going further into template-driven forms, you should have a basic understanding of the following.
Template-driven forms rely on directives defined in the FormsModule
.
The NgModel
directive reconciles value changes in the attached form element with changes in the data model, allowing you to respond to user input with input validation and error handling.
The NgForm
directive creates a top-level FormGroup
instance and binds it to a <form>
element to track aggregated form value and validation status. As soon as you import FormsModule
, this directive becomes active by default on all <form>
tags. You don't need to add a special selector.
The NgModelGroup
directive creates and binds a FormGroup
instance to a DOM element.
The sample form in this guide is used by the Hero Employment Agency to maintain personal information about heroes. Every hero needs a job. This form helps the agency match the right hero with the right crisis.
The form highlights some design features that make it easier to use. For instance, the two required fields have a green bar on the left to make them easy to spot. These fields have initial values, so the form is valid and the Submit button is enabled.
As you work with this form, you will learn how to include validation logic, how to customize the presentation with standard CSS, and how to handle error conditions to ensure valid input. If the user deletes the hero name, for example, the form becomes invalid. The app detects the changed status, and displays a validation error in an attention-grabbing style. In addition, the Submit button is disabled, and the "required" bar to the left of the input control changes from green to red.
In the course of this tutorial, you bind a sample form to data and handle user input using the following steps.
Build the basic form.
FormsModule
.Bind form controls to data properties using the ngModel
directive and two-way data-binding syntax.
Track input validity and control status using ngModel
.
Handle form submission using the ngSubmit
output property of the form.
You can recreate the sample application from the code provided here, or you can examine or download the live example.
The provided sample application creates the Hero
class which defines the data model reflected in the form.
export class Hero { constructor( public id: number, public name: string, public power: string, public alterEgo?: string ) { } }
The form layout and details are defined in the HeroFormComponent
class.
import { Component } from '@angular/core'; import { Hero } from '../hero'; @Component({ selector: 'app-hero-form', templateUrl: './hero-form.component.html', styleUrls: ['./hero-form.component.css'] }) export class HeroFormComponent { powers = ['Really Smart', 'Super Flexible', 'Super Hot', 'Weather Changer']; model = new Hero(18, 'Dr IQ', this.powers[0], 'Chuck Overstreet'); submitted = false; onSubmit() { this.submitted = true; } // TODO: Remove this when we're done get diagnostic() { return JSON.stringify(this.model); } }
The component's selector
value of "app-hero-form" means you can drop this form in a parent template using the <app-hero-form>
tag.
The following code creates a new hero instance, so that the initial form can show an example hero.
const myHero = new Hero(42, 'SkyDog', 'Fetch any object at any distance', 'Leslie Rollover'); console.log('My hero is called ' + myHero.name); // "My hero is called SkyDog"
This demo uses dummy data for model
and powers
. In a real app, you would inject a data service to get and save real data, or expose these properties as inputs and outputs.
The application enables the Forms feature and registers the created form component.
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { HeroFormComponent } from './hero-form/hero-form.component'; @NgModule({ imports: [ BrowserModule, FormsModule ], declarations: [ AppComponent, HeroFormComponent ], providers: [], bootstrap: [ AppComponent ] }) export class AppModule { }
The form is displayed in the application layout defined by the root component's template.
<app-hero-form></app-hero-form>
The initial template defines the layout for a form with two form groups and a submit button. The form groups correspond to two properties of the Hero data model, name and alterEgo. Each group has a label and a box for user input.
<input>
control element has the HTML5 required
attribute.<input>
control element does not because alterEgo
is optional.The Submit button has some classes on it for styling. At this point, the form layout is all plain HTML5, with no bindings or directives.
The sample form uses some style classes from Twitter Bootstrap: container
, form-group
, form-control
, and btn
. To use these styles, the app's style sheet imports the library.
@import url('https://unpkg.com/[email protected]/dist/css/bootstrap.min.css');
The form makes the hero applicant choose one superpower from a fixed list of agency-approved powers. The predefined list of powers
is part of the data model, maintained internally in HeroFormComponent
. The Angular NgForOf directive iterates over the data values to populate the <select>
element.
<div class="form-group"> <label for="power">Hero Power</label> <select class="form-control" id="power" required> <option *ngFor="let pow of powers" [value]="pow">{{pow}}</option> </select> </div>
If you run the app right now, you see the list of powers in the selection control. The input elements are not yet bound to data values or events, so they are still blank and have no behavior.
The next step is to bind the input controls to the corresponding Hero
properties with two-way data binding, so that they respond to user input by updating the data model, and also respond to programmatic changes in the data by updating the display.
The ngModel
directive declared in the FormsModule
lets you bind controls in your template-driven form to properties in your data model. When you include the directive using the syntax for two-way data binding, [(ngModel)]
, Angular can track the value and user interaction of the control and keep the view synced with the model.
Edit the template file hero-form.component.html
.
Find the <input>
tag next to the Name label.
Add the ngModel
directive, using two-way data binding syntax [(ngModel)]="..."
.
<input type="text" class="form-control" id="name" required [(ngModel)]="model.name" name="name"> TODO: remove this: {{model.name}}
This example has a temporary diagnostic interpolation after each input tag,
{{model.name}}
, to show the current data value of the corresponding property. The note reminds you to remove the diagnostic lines when you have finished observing the two-way data binding at work.
When you imported the FormsModule
in your component, Angular automatically created and attached an NgForm directive to the <form>
tag in the template (because NgForm
has the selector form
that matches <form>
elements).
To get access to the NgForm
and the overall form status, declare a template reference variable.
Edit the template file hero-form.component.html
.
Update the <form>
tag with a template reference variable, #heroForm
, and set its value as follows.
<form #heroForm="ngForm">
The heroForm
template variable is now a reference to the NgForm
directive instance that governs the form as a whole.
Run the app.
Start typing in the Name input box.
As you add and delete characters, you can see them appear and disappear from the data model. For example:
The diagnostic line that shows interpolated values demonstrates that values are really flowing from the input box to the model and back again.
When you use [(ngModel)]
on an element, you must define a name
attribute for that element. Angular uses the assigned name to register the element with the NgForm
directive attached to the parent <form>
element.
The example added a name
attribute to the <input>
element and set it to "name", which makes sense for the hero's name. Any unique value will do, but using a descriptive name is helpful.
Add similar [(ngModel)]
bindings and name
attributes to Alter Ego and Hero Power.
You can now remove the diagnostic messages that show interpolated values.
To confirm that two-way data binding works for the entire hero model, add a new binding at the top to the component's diagnostic
property.
After these revisions, the form template should look like the following:
{{diagnostic}} <div class="form-group"> <label for="name">Name</label> <input type="text" class="form-control" id="name" required [(ngModel)]="model.name" name="name"> </div> <div class="form-group"> <label for="alterEgo">Alter Ego</label> <input type="text" class="form-control" id="alterEgo" [(ngModel)]="model.alterEgo" name="alterEgo"> </div> <div class="form-group"> <label for="power">Hero Power</label> <select class="form-control" id="power" required [(ngModel)]="model.power" name="power"> <option *ngFor="let pow of powers" [value]="pow">{{pow}}</option> </select> </div>
Notice that each <input>
element has an id
property. This is used by the <label>
element's for
attribute to match the label to its input control. This is a standard HTML feature.
Each <input>
element also has the required name
property that Angular uses to register the control with the form.
If you run the app now and change every hero model property, the form might display like this:
The diagnostic near the top of the form confirms that all of your changes are reflected in the model.
{{diagnostic}}
binding.The NgModel
directive on a control tracks the state of that control. It tells you if the user touched the control, if the value changed, or if the value became invalid. Angular sets special CSS classes on the control element to reflect the state, as shown in the following table.
State | Class if true | Class if false |
---|---|---|
The control has been visited. | ng-touched | ng-untouched |
The control's value has changed. | ng-dirty | ng-pristine |
The control's value is valid. | ng-valid | ng-invalid |
You use these CSS classes to define the styles for your control based on its status.
To see how the classes are added and removed by the framework, open the browser's developer tools and inspect the <input>
element that represents the hero name.
Using your browser's developer tools, find the <input>
element that corresponds to the Name input box. You can see that the element has multiple CSS classes in addition to "form-control".
When you first bring it up, the classes indicate that it has a valid value, that the value has not been changed since initialization or reset, and that the control has not been visited since initialization or reset.
<input ... class="form-control ng-untouched ng-pristine ng-valid" ...>
Take the following actions on the Name <input>
box, and observe which classes appear.
ng-touched
class instead of the ng-untouched
class.ng-invalid
class replaces the ng-valid
class.The ng-valid
/ng-invalid
pair is particularly interesting, because you want to send a strong visual signal when the values are invalid. You also want to mark required fields.
You can mark required fields and invalid data at the same time with a colored bar on the left of the input box:
To change the appearance in this way, take the following steps.
Add definitions for the ng-*
CSS classes.
Add these class definitions to a new forms.css
file.
Add the new file to the project as a sibling to index.html
:
.ng-valid[required], .ng-valid.required { border-left: 5px solid #42A948; /* green */ } .ng-invalid:not(form) { border-left: 5px solid #a94442; /* red */ }
In the index.html
file, update the <head>
tag to include the new style sheet.
<link rel="stylesheet" href="assets/forms.css">
The Name input box is required and clearing it turns the bar red. That indicates that something is wrong, but the user doesn't know what is wrong or what to do about it. You can provide a helpful message by checking for and responding to the control's state.
When the user deletes the name, the form should look like this:
The Hero Power select box is also required, but it doesn't need this kind of error handling because the selection box already constrains the selection to valid values.
To define and show an error message when appropriate, take the following steps.
Extend the <input>
tag with a template reference variable that you can use to access the input box's Angular control from within the template. In the example, the variable is #name="ngModel"
.
The template reference variable (
#name
) is set to"ngModel"
because that is the value of theNgModel.exportAs
property. This property tells Angular how to link a reference variable to a directive.
Add a <div>
that contains a suitable error message.
Show or hide the error message by binding properties of the name
control to the message <div>
element's hidden
property.
<div [hidden]="name.valid || name.pristine" class="alert alert-danger">
Add a conditional error message to the name input box, as in the following example.
<label for="name">Name</label> <input type="text" class="form-control" id="name" required [(ngModel)]="model.name" name="name" #name="ngModel"> <div [hidden]="name.valid || name.pristine" class="alert alert-danger"> Name is required </div>
In this example, you hide the message when the control is either valid or pristine. Pristine means the user hasn't changed the value since it was displayed in this form. If you ignore the pristine
state, you would hide the message only when the value is valid. If you arrive in this component with a new (blank) hero or an invalid hero, you'll see the error message immediately, before you've done anything.
You might want the message to display only when the user makes an invalid change. Hiding the message while the control is in the pristine
state achieves that goal. You'll see the significance of this choice when you add a new hero to the form in the next step.
This exercise shows how you can respond to a native HTML button-click event by adding to the model data. To let form users add a new hero, you will add a New Hero button that responds to a click event.
In the template, place a "New Hero" <button>
element at the bottom of the form.
In the component file, add the hero-creation method to the hero data model.
newHero() { this.model = new Hero(42, '', ''); }
Bind the button's click event to a hero-creation method, newHero()
.
<button type="button" class="btn btn-default" (click)="newHero()">New Hero</button>
Run the application again and click the New Hero button.
The form clears, and the required bars to the left of the input box are red, indicating invalid name
and power
properties. Notice that the error messages are hidden. This is because the form is pristine; you haven't changed anything yet.
Enter a name and click New Hero again.
Now the app displays a Name is required error message, because the input box is no longer pristine. The form remembers that you entered a name before clicking New Hero.
To restore the pristine state of the form controls, clear all of the flags imperatively by calling the form's reset()
method after calling the newHero()
method.
<button type="button" class="btn btn-default" (click)="newHero(); heroForm.reset()">New Hero</button>
Now clicking New Hero resets both the form and its control flags.
See the User Input guide for more information about listening for DOM events with an event binding and updating a corresponding component property.
ngSubmit
The user should be able to submit this form after filling it in. The Submit button at the bottom of the form does nothing on its own, but it does trigger a form-submit event because of its type (type="submit"
). To respond to this event, take the following steps.
Bind the form's ngSubmit
event property to the hero-form component's onSubmit()
method.
<form (ngSubmit)="onSubmit()" #heroForm="ngForm">
Use the template reference variable, #heroForm
to access the form that contains the Submit button and create an event binding. You will bind the form property that indicates its overall validity to the Submit button's disabled
property.
<button type="submit" class="btn btn-success" [disabled]="!heroForm.form.valid">Submit</button>
Run the application now. Notice that the button is enabled—although it doesn't do anything useful yet.
Delete the Name value. This violates the "required" rule, so it displays the error message—and notice that it also disables the Submit button.
You didn't have to explicitly wire the button's enabled state to the form's validity. The FormsModule
did this automatically when you defined a template reference variable on the enhanced form element, then referred to that variable in the button control.
To show a response to form submission, you can hide the data entry area and display something else in its place.
Wrap the entire form in a <div>
and bind its hidden
property to the HeroFormComponent.submitted
property.
<div [hidden]="submitted"> <h1>Hero Form</h1> <form (ngSubmit)="onSubmit()" #heroForm="ngForm"> <!-- ... all of the form ... --> </form> </div>
The main form is visible from the start because the submitted
property is false until you submit the form, as this fragment from the HeroFormComponent
shows:
submitted = false; onSubmit() { this.submitted = true; }
When you click the Submit button, the submitted
flag becomes true and the form disappears.
To show something else while the form is in the submitted state, add the following HTML below the new <div>
wrapper.
<div [hidden]="!submitted"> <h2>You submitted the following:</h2> <div class="row"> <div class="col-xs-3">Name</div> <div class="col-xs-9">{{ model.name }}</div> </div> <div class="row"> <div class="col-xs-3">Alter Ego</div> <div class="col-xs-9">{{ model.alterEgo }}</div> </div> <div class="row"> <div class="col-xs-3">Power</div> <div class="col-xs-9">{{ model.power }}</div> </div> <br> <button class="btn btn-primary" (click)="submitted=false">Edit</button> </div>
This <div>
, which shows a read-only hero with interpolation bindings, appears only while the component is in the submitted state.
The alternative display includes an Edit button whose click event is bound to an expression that clears the submitted
flag.
Click the Edit button to switch the display back to the editable form.
The Angular form discussed in this page takes advantage of the following framework features to provide support for data modification, validation, and more.
@Component
decorator.NgForm.ngSubmit
event property.#heroForm
and #name
.[(ngModel)]
syntax for two-way data binding.name
attributes for validation and form-element change tracking.valid
property on input controls to check if a control is valid and show or hide error messages.NgForm
validity.Here’s the code for the final version of the application:
import { Component } from '@angular/core'; import { Hero } from '../hero'; @Component({ selector: 'app-hero-form', templateUrl: './hero-form.component.html', styleUrls: ['./hero-form.component.css'] }) export class HeroFormComponent { powers = ['Really Smart', 'Super Flexible', 'Super Hot', 'Weather Changer']; model = new Hero(18, 'Dr IQ', this.powers[0], 'Chuck Overstreet'); submitted = false; onSubmit() { this.submitted = true; } newHero() { this.model = new Hero(42, '', ''); } }
<div class="container"> <div [hidden]="submitted"> <h1>Hero Form</h1> <form (ngSubmit)="onSubmit()" #heroForm="ngForm"> <div class="form-group"> <label for="name">Name</label> <input type="text" class="form-control" id="name" required [(ngModel)]="model.name" name="name" #name="ngModel"> <div [hidden]="name.valid || name.pristine" class="alert alert-danger"> Name is required </div> </div> <div class="form-group"> <label for="alterEgo">Alter Ego</label> <input type="text" class="form-control" id="alterEgo" [(ngModel)]="model.alterEgo" name="alterEgo"> </div> <div class="form-group"> <label for="power">Hero Power</label> <select class="form-control" id="power" required [(ngModel)]="model.power" name="power" #power="ngModel"> <option *ngFor="let pow of powers" [value]="pow">{{pow}}</option> </select> <div [hidden]="power.valid || power.pristine" class="alert alert-danger"> Power is required </div> </div> <button type="submit" class="btn btn-success" [disabled]="!heroForm.form.valid">Submit</button> <button type="button" class="btn btn-default" (click)="newHero(); heroForm.reset()">New Hero</button> </form> </div> <div [hidden]="!submitted"> <h2>You submitted the following:</h2> <div class="row"> <div class="col-xs-3">Name</div> <div class="col-xs-9">{{ model.name }}</div> </div> <div class="row"> <div class="col-xs-3">Alter Ego</div> <div class="col-xs-9">{{ model.alterEgo }}</div> </div> <div class="row"> <div class="col-xs-3">Power</div> <div class="col-xs-9">{{ model.power }}</div> </div> <br> <button class="btn btn-primary" (click)="submitted=false">Edit</button> </div> </div>
export class Hero { constructor( public id: number, public name: string, public power: string, public alterEgo?: string ) { } }
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { HeroFormComponent } from './hero-form/hero-form.component'; @NgModule({ imports: [ BrowserModule, FormsModule ], declarations: [ AppComponent, HeroFormComponent ], providers: [], bootstrap: [ AppComponent ] }) export class AppModule { }
<app-hero-form></app-hero-form>
import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { }
import { enableProdMode } from '@angular/core'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; import { environment } from './environments/environment'; if (environment.production) { enableProdMode(); } platformBrowserDynamic().bootstrapModule(AppModule);
.ng-valid[required], .ng-valid.required { border-left: 5px solid #42A948; /* green */ } .ng-invalid:not(form) { border-left: 5px solid #a94442; /* red */ }
© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v10.angular.io/guide/forms