Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

41 строка
1.5 KiB

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /** @var $block \Magento\Checkout\Block\Registration */
  7. ?>
  8. <div id="registration" data-bind="scope:'registration'">
  9. <br />
  10. <!-- ko template: getTemplate() --><!-- /ko -->
  11. <script type="text/x-magento-init">
  12. {
  13. "#registration": {
  14. "Magento_Ui/js/core/app": {
  15. "components": {
  16. "registration": {
  17. "component": "Magento_Checkout/js/view/registration",
  18. "config": {
  19. "registrationUrl":
  20. "<?= $block->escapeJs($block->escapeUrl($block->getCreateAccountUrl())) ?>",
  21. "email": "<?= $block->escapeJs($block->getEmailAddress()) ?>"
  22. },
  23. "children": {
  24. "errors": {
  25. "component": "Magento_Ui/js/view/messages",
  26. "sortOrder": 0,
  27. "displayArea": "messages",
  28. "config": {
  29. "autoHideTimeOut": -1
  30. }
  31. }
  32. }
  33. }
  34. }
  35. }
  36. }
  37. }
  38. </script>
  39. </div>