Angular Reactive Form Validate Only Gmail
You can Easy Validate Email in Angular Reactive Form Below Given code use and It will be help you for you needed.
this.testForm=this.formBuilder.group({
email:['', [Validators.required, Validators.email, Validators.pattern('^.+@gmail.com$')]],
})
No comments:
Post a Comment