templates/registration/steps/terms.html.twig line 1

Open in your IDE?
  1. {% if formLabel == 'Terms & Conditions' %}
  2. {% if termsAndConditions %}
  3. {{ termsAndConditions.text|raw }}
  4. {% endif %}
  5. {% set termsOfUseFormGroup %}
  6. {{ form_row(form.termsAccepted) }}
  7. {% endset %}
  8. {% set termsUrl %}<a target="_blank" href="{{ path('programRules') }}">Terms and Conditions</a>{% endset %}
  9. {{ termsOfUseFormGroup|replace({'#TERMS_LINK#': termsUrl })|raw }}
  10. {% endif %}