registration.html 647 B

123456789101112131415161718
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!-- ko foreach: getRegion('messages') -->
  8. <!-- ko template: getTemplate() --><!-- /ko -->
  9. <!--/ko-->
  10. <div>
  11. <!-- ko if: isFormVisible -->
  12. <p data-bind="i18n: 'You can track your order status by creating an account.'"></p>
  13. <p><span data-bind="i18n: 'Email Address'"></span>: <span data-bind="text: getEmailAddress()"></span></p>
  14. <form method="get" data-bind="attr: { action: getUrl() }">
  15. <input type="submit" class="action primary" data-bind="value: $t('Create an Account')" />
  16. </form>
  17. <!--/ko-->
  18. </div>