import { Component } from '@angular/core'; import {FormControl, FormGroup, ReactiveFormsModule, Validators} from "@angular/forms"; import {IonicModule} from "@ionic/angular"; @Component({ selector: 'app-sign-on-form', templateUrl: './sign-on-form.component.html', styleUrls: ['./sign-on-form.component.scss'], imports: [ IonicModule, ReactiveFormsModule ] }) export class SignOnFormComponent { userForm: FormGroup = new FormGroup({ firstName: new FormControl(null, [Validators.required]), name: new FormControl(null, [Validators.required]), username: new FormControl(null, [Validators.required]), email: new FormControl(null, [Validators.required]), password: new FormControl(null, [Validators.required]), }) }