templates\forms\signup\_section.html.twig line 1

Open in your IDE?
  1. <div class="form__body">
  2.               <div class="form__inner-header">
  3.                 <div class="form__inner-title"><span>{{sectionNum}}. </span>{{sectionName}}</div>
  4.                 <div class="form__step">Step {{sectionNum}}</div>
  5.               </div>
  6.               
  7.               {#{% for field in businessRulesData%}
  8.                   
  9.                     {% if field['eligibilityCheckHoldMessage'] != "" %}
  10.                         <div id="CheckHold-{{ field['fieldname']}}" class="form-alert js-alert hide">
  11.                             <div class="form-alert__text">{{ field.eligibilityCheckHoldMessage}}</div>
  12.                             <a href="#" class="form-alert__close js-alert-close" aria-label="close alert">
  13.                               <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  14.                                 <path d="M18.0024 5.98767L5.99731 17.9928" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  15.                                 <path d="M18.0066 18.0001L5.99146 5.98242" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  16.                               </svg>      
  17.                             </a>
  18.                         </div>
  19.                     {% endif %}
  20.                 {% endfor %}#}
  21.               
  22.                 {% include 'parts/_grid.html.twig' %}
  23.                
  24.               
  25.   
  26.             </div>