Skip to content

Instantly share code, notes, and snippets.

@AmirTugi
Last active March 22, 2018 08:46
Show Gist options
  • Save AmirTugi/2978381dd74e6832c9f180d755333bf5 to your computer and use it in GitHub Desktop.
Save AmirTugi/2978381dd74e6832c9f180d755333bf5 to your computer and use it in GitHub Desktop.
<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