Last active
March 22, 2018 08:46
-
-
Save AmirTugi/2978381dd74e6832c9f180d755333bf5 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
<div class="mat-typography"> | |
<h1>Checkout Order</h1> | |
<div class="checkout-form"> | |
<form novalidate [formGroup]="checkoutForm"> | |
<mat-form-field> | |
<input matInput type="text" placeholder='Full name' formControlName="fullName"> | |
</mat-form-field> | |
<mat-tab-group> | |
<mat-tab label="Billing"> | |
<billing-form (formReady)="formInitialized('billing', $event)"></billing-form> | |
</mat-tab> | |
<mat-tab label="Shipping"> | |
<shipping-form (formReady)="formInitialized('shipping', $event)"></shipping-form> | |
</mat-tab> | |
</mat-tab-group> | |
</form> | |
</div> | |
<h2 class='mat-h2'>Form Value</h2> | |
<pre> | |
{{checkoutForm.value | json}} | |
</pre> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment