Guest User

Untitled

a guest
Jun 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <div class="form-group">
  2. <label for="vat">Tel</label>
  3. <input type="text" class="form-control" id="vat" formControlName="tel" />
  4. </div>
  5.  
  6. ngOnInit() {
  7. this.form = this.formBuilder.group({
  8. tel: ['', Validators.required],
  9. });
  10. }
Add Comment
Please, Sign In to add comment