Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Created February 9, 2017 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/db6ff036b85fbf51cf76a3d8665902d6 to your computer and use it in GitHub Desktop.
Save matthieu-D/db6ff036b85fbf51cf76a3d8665902d6 to your computer and use it in GitHub Desktop.
<form [formGroup]="userForm" (ngSubmit)="onFormSubmitted(userForm)">
<label>
<span>Name</span>
<input type="text" formControlName="name" placeholder="Name" required>
</label>
<div>
<label>
<span>Email</span>
<input type="email" formControlName="email" placeholder="Email" required>
</label>
</div>
<div formGroupName="address">
<label>
<span>Country</span>
<input type="text" formControlName="country" placeholder="Country" required>
</label>
<div>
<label>
<span>City</span>
<input type="text" formControlName="city" placeholder="City" required>
</label>
</div>
</div>
<input type="submit" [disabled]="userForm.invalid">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment