Answers for "mat anguler form with email validation"

5

angular email validation

<input type="email" name="email" ngModel email>
<input type="email" name="email" ngModel email="true">
<input type="email" name="email" ngModel [email]="true">
Posted by: Guest on March-13-2020
2

mat-form-field email validation

<input matInput placeholder="Favorite food" [(ngModel)]="enterEmail" name="myEmail" pattern="[a-zA-Z0-9.-_]{1,}@[a-zA-Z.-]{2,}[.]{1}[a-zA-Z]{2,}" required>
Posted by: Guest on May-29-2020

Code answers related to "mat anguler form with email validation"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language