From 79a2567aa3ad54e0ef5ff1532b2f405bd72372bf Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Fri, 14 Sep 2018 09:15:10 -0500 Subject: [PATCH] docs: forms overview review changes (#25663) PR Close #25663 --- aio/content/guide/forms-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/forms-overview.md b/aio/content/guide/forms-overview.md index a90aec5822..ec2b87b8fc 100644 --- a/aio/content/guide/forms-overview.md +++ b/aio/content/guide/forms-overview.md @@ -1,6 +1,6 @@ -# Forms in Angular +# Introduction to forms in Angular -Handling user input with forms is the cornerstone of many common applications. You use forms to log in, to update a profile, to enter sensitive information, and to perform many other data-entry tasks. +Handling user input with forms is the cornerstone of many common applications. Applications use forms to log in, to update a profile, to enter sensitive information, and to perform many other data-entry tasks. Angular provides two different approaches to handling user input through forms: reactive and template-driven. Each set of forms promote a distinct way of processing forms and offers different advantages. The sections below provide a comparison of the two approaches and when each one is applicable. There are many different factors that influence your decision on which approach works best for your situation. Whether you’re using reactive or template-driven forms, these concepts are key to understanding the mechanisms underneath each solution.