From 9a0a90feb3bdf1cf63bb24779f7caa3afb627a3f Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Sun, 15 Mar 2020 15:58:34 -0400 Subject: [PATCH] docs: place download section in angular forms validation to the top of the page (#36074) This commit partially addresses #35459 PR Close #36074 --- aio/content/guide/form-validation.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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.**