Created
June 18, 2019 08:34
-
-
Save ganqqwerty/54bf3c5e48ec07d2695f45feb58f8100 to your computer and use it in GitHub Desktop.
This file contains hidden or 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