Merge pull request #8229 from Juanitou/patch-4

Replace broken link to tutorial
This commit is contained in:
Robbie Averill 2018-06-30 02:06:09 +12:00 committed by GitHub
commit 14784f06d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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).
<div class="notice" markdown="1">
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`
</div>
## 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