Understanding Template Forms

In this lesson, we'll take a moment to understand what's going on behind the scenes with template forms.

We'll cover the following...

Believe it or not, template forms aren’t all that different from reactive forms. Under the hood, template forms are using form groups and controls. It might seem mysterious because we haven’t imported those classes.

When we use template forms, Angular will scan your template for <form> elements. If it finds one, it will automatically create a form group and bind it for you. This is ...