This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form (ngSubmit)='loginUser()' [formGroup]='loginForm' novalidate class="form"> | |
<input formControlName='email' type="text" class="form-control" placeholder="Enter Email" /> | |
<div class="alert alert-danger" *ngIf="loginForm.get('email').hasError('required') && loginForm.get('email').touched"> | |
Email is required | |
</div> | |
<input formControlName='password' type="password" class="form-control" placeholder="Enter Password" /> | |
<input formControlName='phonenumber' type="text" class="form-control" placeholder="Enter Phone Number" /> | |
<div class="alert alert-danger" *ngIf="loginForm.get('phonenumber').hasError('required') && loginForm.get('phonenumber').touched"> | |
Phone Number is required | |
</div> | |
<br /> | |
<button [disabled]='loginForm.invalid' class="btn btn-default">Login</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment