![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
JavaScript
- 6 ответов
- 0 вопросов
2
Вклад в тег
constructor() {
this.loginForm = new FormGroup({
email: new FormControl('', [Validators.required , Validators.email]),
password: new FormControl('', [Validators.required , Validators.minLength(4)]),
});
}