custom/plugins/CrswCleverReachOfficial/src/Resources/views/storefront/component/account/register.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/account/register.html.twig' %}
  2. {% block component_account_register_address %}
  3.     {{ parent() }}
  4.     {% if page.extensions.cleverreach.automationData.showCheckbox %}
  5.         <div style="margin-bottom: 3rem">
  6.             <div class="card-title">
  7.                 {{ "account.newsletterTitle"|trans|sw_sanitize }}
  8.             </div>
  9.             <div class="custom-control custom-checkbox">
  10.                 <input type="checkbox"
  11.                        class="custom-control-input"
  12.                        id="newsletterRegister"
  13.                        name="option"
  14.                        value="direct">
  15.                 <label class="form-check-label custom-control-label"
  16.                        for="newsletterRegister">
  17.                     {{ "account.newsletterSettings"|trans({'%shopname%': shopware.config.core.basicInformation.shopName})|sw_sanitize }}
  18.                 </label>
  19.             </div>
  20.         </div>
  21.     {% endif %}
  22. {% endblock %}