Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 2x | <h3 class="subheading">{{ 'checkout.addresses.billing_address.heading' | translate }}</h3>
<p class="indicates-required" aria-hidden="true">
<span class="required">*</span>{{ 'account.required_field.message' | translate }}
</p>
<!-- Invoice Address -->
<ish-formly-address-form
#invoiceAddress
data-testing-id="invoiceAddressForm"
[parentForm]="invoiceAddressForm"
[businessCustomer]="isBusinessCustomer"
/>
<!-- Taxation ID and Email address input field-->
<ish-formly-address-extension-form [form]="attributesForm" [businessCustomer]="isBusinessCustomer" />
<!-- Shipping Address Selection Radio boxes-->
<div class="section">
<h3>{{ 'checkout.addresses.shipping_address.heading' | translate }}</h3>
<formly-form [form]="shipOptionForm" [fields]="shipOptionFields" />
</div>
<!-- Shipping Address -->
<div [ngbCollapse]="!isShippingAddressFormExpanded" data-testing-id="shipping-address-form">
<ish-formly-address-form
#shippingAddress
[parentForm]="shippingAddressForm"
[businessCustomer]="isBusinessCustomer"
/>
</div>
|