Last active
February 22, 2018 20:13
-
-
Save shafiqshams/b0ca0bdb603e4e8b37e67edc1b35776e to your computer and use it in GitHub Desktop.
Sandbox Component for Template Driven Forms Validation
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
import { Component } from '@angular/core'; | |
@Component({ | |
selector:'sandbox', | |
template:` | |
<h1>Hello World</h1> | |
<form novalidate #f="ngForm" (ngSubmit)="onSubmit(f)"> | |
<div class="form-group"> | |
<label>Name</label> | |
<input | |
type="text" | |
class="form-control" | |
[(ngModel)]="user.name" | |
name="name" | |
#userName="ngModel" | |
minlength="2" | |
required | |
> | |
<div *ngIf="userName.errors?.required && userName.touched" class="alert alert-danger">Name is required</div> | |
<div *ngIf="userName.errors?.minlength && userName.touched" class="alert alert-danger">Name should be at least 2 characters</div> | |
</div> | |
<div class="form-group"> | |
<label>Email</label> | |
<input | |
type="text" | |
class="form-control" | |
[(ngModel)]="user.email" | |
name="email" | |
#userEmail="ngModel" | |
required | |
> | |
<div *ngIf="userEmail.errors?.required && userEmail.touched" class="alert alert-danger">Email is required</div> | |
</div> | |
<div class="form-group"> | |
<label>Phone</label> | |
<input | |
type="text" | |
class="form-control" | |
[(ngModel)]="user.phone" | |
name="phone" | |
#userPhone="ngModel" | |
minlength="10" | |
> | |
<div *ngIf="userPhone.errors?.minlength && userPhone.touched" class="alert alert-danger">Enter a valid phone number</div> | |
</div> | |
<input type="submit" class="btn btn-success" value="Submit"> | |
</form> | |
` | |
}) | |
export class SandboxComponent{ | |
user = { | |
name:'', | |
email:'', | |
phone:'' | |
} | |
onSubmit({value, valid}){ | |
if(valid){ | |
console.log(value); | |
} else { | |
console.log('Form is invalid'); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment