customer_account_create.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * MageSpecialist
  5. *
  6. * NOTICE OF LICENSE
  7. *
  8. * This source file is subject to the Open Software License (OSL 3.0)
  9. * that is bundled with this package in the file LICENSE.txt.
  10. * It is also available through the world-wide-web at this URL:
  11. * http://opensource.org/licenses/osl-3.0.php
  12. * If you did not receive a copy of the license and are unable to
  13. * obtain it through the world-wide-web, please send an email
  14. * to info@magespecialist.it so we can send you a copy immediately.
  15. *
  16. * @category MSP
  17. * @package MSP_ReCaptcha
  18. * @copyright Copyright (c) 2017 Skeeller srl (http://www.magespecialist.it)
  19. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  20. */
  21. -->
  22. <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  23. xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
  24. <body>
  25. <referenceContainer name="form.additional.info">
  26. <block class="MSP\ReCaptcha\Block\Frontend\ReCaptcha" name="msp-recaptcha" after="-"
  27. template="MSP_ReCaptcha::msp_recaptcha.phtml">
  28. <arguments>
  29. <argument name="jsLayout" xsi:type="array">
  30. <item name="components" xsi:type="array">
  31. <item name="msp-recaptcha" xsi:type="array">
  32. <item name="component" xsi:type="string">MSP_ReCaptcha/js/reCaptcha</item>
  33. <item name="zone" xsi:type="string">create</item>
  34. </item>
  35. </item>
  36. </argument>
  37. </arguments>
  38. </block>
  39. </referenceContainer>
  40. </body>
  41. </page>