shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

google.twig (830B)


      1 <script src="//www.google.com/recaptcha/api.js" type="text/javascript"></script>
      2 <fieldset>
      3   <legend>{{ text_captcha }}</legend>
      4   <div class="form-group required">{% if route|slice(0, 9) == 'checkout/' %}
      5     <label class="control-label" for="input-payment-captcha">{{ entry_captcha }}</label>
      6     <div id="input-payment-captcha" class="g-recaptcha" data-sitekey="{{ site_key }}"></div>
      7     {% if error_captcha %}
      8     <div class="text-danger">{{ error_captcha }}</div>
      9     {% endif %}
     10     {% else %}
     11     <label class="col-sm-2 control-label">{{ entry_captcha }}</label>
     12     <div class="col-sm-10">
     13       <div class="g-recaptcha" data-sitekey="{{ site_key }}"></div>
     14       {% if error_captcha %}
     15       <div class="text-danger">{{ error_captcha }}</div>
     16       {% endif %}</div>
     17     {% endif %}</div>
     18 </fieldset>