1234567891011121314151617 |
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <form method="post" id="shipping-zip-form">
- <fieldset class="fieldset estimate">
- <legend class="legend">
- <span data-bind="text: isVirtual ? $t('Estimate Tax') : $t('Estimate Shipping and Tax') "></span>
- </legend><br>
- <p class="field note" data-bind="text: isVirtual ? $t('Enter your billing address to get a tax estimate.') : $t('Enter your destination to get a shipping estimate.')"></p>
- <!-- ko foreach: getRegion('address-fieldsets') -->
- <!-- ko template: getTemplate() --><!-- /ko -->
- <!--/ko-->
- </fieldset>
- </form>
|