Navigation Menu

Skip to content

Commit

Permalink
Step 5.8: Implement form directives
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored and dotansimha committed Nov 27, 2016
1 parent 8c2bac2 commit 1456a8d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/imports/app/parties/parties-form.component.html
@@ -1,12 +1,12 @@
<form>
<form [formGroup]="addForm">
<label>Name</label>
<input type="text">
<input type="text" formControlName="name">

<label>Description</label>
<input type="text">
<input type="text" formControlName="description">

<label>Location</label>
<input type="text">
<input type="text" formControlName="location">

<button>Add</button>
<button type="submit">Add</button>
</form>

0 comments on commit 1456a8d

Please sign in to comment.