diff --git a/aio/content/guide/form-validation.md b/aio/content/guide/form-validation.md index 03f16e6d17..2b61e53319 100644 --- a/aio/content/guide/form-validation.md +++ b/aio/content/guide/form-validation.md @@ -1,14 +1,17 @@ # Form validation - - - Improve overall data quality by validating user input for accuracy and completeness. This page shows how to validate user input in the UI and display useful validation messages using both reactive and template-driven forms. It assumes some basic knowledge of the two forms modules. +
+ + For the sample app that this page describes, see the . + +
+
If you're new to forms, start by reviewing the [Forms](guide/forms) and @@ -336,5 +339,3 @@ With reactive forms: ```typescript new FormControl('', {updateOn: 'blur'}); ``` - -**You can run the to see the complete reactive and template-driven example code.**