123456789101112131415161718 |
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <!-- ko foreach: getRegion('messages') -->
- <!-- ko template: getTemplate() --><!-- /ko -->
- <!--/ko-->
- <div>
- <!-- ko if: isFormVisible -->
- <p data-bind="i18n: 'You can track your order status by creating an account.'"></p>
- <p><span data-bind="i18n: 'Email Address'"></span>: <span data-bind="text: getEmailAddress()"></span></p>
- <form method="get" data-bind="attr: { action: getUrl() }">
- <input type="submit" class="action primary" data-bind="value: $t('Create an Account')" />
- </form>
- <!--/ko-->
- </div>
|