-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Jan 22, 2021
1 parent
d40802e
commit 97a6f0a
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<fieldset [formGroup]="form"> | ||
|
||
<legend>{{legend}}</legend> | ||
|
||
<mat-form-field> | ||
|
||
<input matInput | ||
placeholder="Address Line 1" | ||
formControlName="addressLine1"> | ||
|
||
</mat-form-field> | ||
|
||
<mat-form-field> | ||
|
||
<input matInput | ||
placeholder="Address Line 2" | ||
formControlName="addressLine2"> | ||
|
||
</mat-form-field> | ||
|
||
<mat-form-field> | ||
|
||
<input matInput | ||
placeholder="Zip Code" | ||
formControlName="zipCode"> | ||
|
||
</mat-form-field> | ||
|
||
<mat-form-field> | ||
|
||
<input matInput | ||
placeholder="City" | ||
formControlName="city"> | ||
|
||
</mat-form-field> | ||
|
||
<div class="form-val"> | ||
|
||
{{form.value | json}} | ||
|
||
</div> | ||
|
||
<div class="form-val"> | ||
|
||
{{form.valid | json}} | ||
|
||
</div> | ||
|
||
</fieldset> |
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