Using the Angular 2 Validators, if the form is invalid, the form button is disabled from the HTML itself like so:
<button class="btn btn-info" [disabled]="!signupForm.valid">Sign Up</button>
How would I use this same effect in the appropriate TS? For instance:
youshallnotpass(){ !this.signupForm.valid; }