From ab00629df931f83f990fb1cd14e26818a04366bf Mon Sep 17 00:00:00 2001 From: DJohn001 Date: Sun, 27 Apr 2025 21:00:31 +0200 Subject: [PATCH] Update creating-forms.md Update dead link to Umbraco forms in info hint --- 15/umbraco-cms/fundamentals/code/creating-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-cms/fundamentals/code/creating-forms.md b/15/umbraco-cms/fundamentals/code/creating-forms.md index c7eb94a7728..ea445636460 100644 --- a/15/umbraco-cms/fundamentals/code/creating-forms.md +++ b/15/umbraco-cms/fundamentals/code/creating-forms.md @@ -8,7 +8,7 @@ description: "Information on creating forms in Umbraco" Creating forms requires that you know your way around .NET Core MVC. So if you are familiar with adding view models, views and controllers you are ready to make your first form. {% hint style="info" %} -You can also use [Umbraco forms](https://umbraco.com/products/umbraco-forms/). It lets you and/or your editors create and handle forms in the backoffice. This includes setting up validation, redirecting and storing and sending form data. Great UI, extendable and supported by Umbraco HQ. +You can also use [Umbraco forms](https://umbraco.com/products/add-ons/forms/). It lets you and/or your editors create and handle forms in the backoffice. This includes setting up validation, redirecting and storing and sending form data. Great UI, extendable and supported by Umbraco HQ. {% endhint %} In this example we'll create a basic contact form containing a name, email and message field.