From 5cd3180e851e600c68f0fcd85e91d6db6d7288f3 Mon Sep 17 00:00:00 2001 From: Juan Molina Date: Fri, 29 Jun 2018 16:03:32 +0200 Subject: [PATCH] Replace broken link to tutorial --- docs/en/02_Developer_Guides/03_Forms/00_Introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md b/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md index f5a2ad3aa..831006bcc 100644 --- a/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md +++ b/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md @@ -7,7 +7,7 @@ The HTML `Form` is the most used way to interact with a user. SilverStripe provi the [Form](api:SilverStripe\Forms\Form) class, [FormField](api:SilverStripe\Forms\FormField) instances to capture data and submissions through [FormAction](api:SilverStripe\Forms\FormAction).
-See the [Forms Tutorial](../../tutorials/forms/) for a step by step process of creating a `Form` +See the [Introduction to frontend forms](https://www.silverstripe.org/learn/lessons/v4/introduction-to-frontend-forms-1) lesson for a step by step process of creating a `Form`
## Creating a Form @@ -347,7 +347,7 @@ $form = new Form($this, 'MyForm', $fields, $actions, $validator); ``` ## Related Lessons -* [Intoduction to frontend forms](https://www.silverstripe.org/learn/lessons/v4/introduction-to-frontend-forms-1) +* [Introduction to frontend forms](https://www.silverstripe.org/learn/lessons/v4/introduction-to-frontend-forms-1) ## API Documentation