Guest User

Untitled

a guest
Dec 14th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <button
  2. [disabled]="!questionsForm.valid || noWards.length < 3"
  3. [ngClass]="{'default':!questionsForm.valid}"
  4. (click)="goToNextStep()" class="contact100-form-btn">
  5. <span>
  6. Start
  7. <i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i>
  8. </span>
  9. </button>
  10.  
  11. this.questionsForm = this.formBuilder.group({
  12. new: ['', Validators.required],
  13. noWards: ['', Validators.required],
  14. user: [''],
  15. pass: ['', Validators.required]
  16. });
Add Comment
Please, Sign In to add comment