-
-
Save Piterden/75d480d118062313a8a3e72d58f83210 to your computer and use it in GitHub Desktop.
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
<h2>My form</h2> | |
<form [formGroup]="myForm" (ngSubmit)="onSubmit()"> | |
<div> | |
Make email mandatory <input formControlName="myCheckbox" | |
type="checkbox"> | |
</div> | |
<div> | |
Email: <input formControlName="myEmailField" | |
type="email"> | |
</div> | |
<button [formAction]="submit">Submit</button> | |
</form> | |
<h2>Debug</h2> | |
<ul> | |
<li>Is my form valid? {{myForm.valid}}</li> | |
<li><pre>{{myForm.controls.myEmailField.errors| json}}</pre></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment