diff --git a/src/app/core/components/navigation/navigation.model.ts b/src/app/core/components/navigation/navigation.model.ts index 12f51dba..0e04362b 100644 --- a/src/app/core/components/navigation/navigation.model.ts +++ b/src/app/core/components/navigation/navigation.model.ts @@ -252,6 +252,12 @@ export class FuseNavigation } ] },*/ + { + 'title': 'Forms', + 'type' : 'nav-item', + 'icon' : 'web_asset', + 'url' : '/ui/forms' + }, { 'title': 'Icons', 'type' : 'nav-item', diff --git a/src/app/main/content/ui/forms/forms.component.html b/src/app/main/content/ui/forms/forms.component.html new file mode 100644 index 00000000..572dc0b9 --- /dev/null +++ b/src/app/main/content/ui/forms/forms.component.html @@ -0,0 +1,124 @@ +
+ Angular reactive forms facilitate a reactive style of programming that favors explicit management of the + data flowing between a non-UI data model (typically retrieved from a server) and a UI-oriented form model + that retains the states and values of the HTML controls on screen. Reactive forms offer the ease of using + reactive patterns, testing, and validation. +
+ +{{formErrors | json}}
+