//... export class LoginComponent implements OnInit { loginForm !: FormGroup; constructor() { } ngOnInit(): void { this.loginForm = new FormGroup({ email: new FormControl('', Validators.required), password: new FormControl('') }) } get email(){return this.loginForm.controls['email']} }