Skip to content

Instantly share code, notes, and snippets.

@ganqqwerty
Created June 18, 2019 08:34
Show Gist options
  • Save ganqqwerty/54bf3c5e48ec07d2695f45feb58f8100 to your computer and use it in GitHub Desktop.
Save ganqqwerty/54bf3c5e48ec07d2695f45feb58f8100 to your computer and use it in GitHub Desktop.
<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