app/Resources/views/common/anti-brush-captcha.html.twig line 1

Open in your IDE?
  1. {% set enable_anti_brush_captcha = setting('ugc_content_audit.enable_anti_brush_captcha')|default(0) %}
  2. <input type="hidden" name="enable_anti_brush_captcha" value="{{enable_anti_brush_captcha}}">
  3. {% if enable_anti_brush_captcha == 1 and app.user.isLogin()|default(false) %}
  4.   <div class="js-mask" style="position:fixed; left:0px; top:0px; background:rgba(0, 0, 0, 0.4); width:100%; height:100%; filter:alpha(opacity=60); opacity:0.6;display:none; z-index:100;"></div>
  5.   <div class="form-group cd-mb32 js-drag-jigsaw" style="width: 338px; height: 219px; position:fixed; z-index:101; display: none; background: white;">
  6.     {% include 'common/drag.html.twig' with { auth: true, showLabel: 0 } %}
  7.   </div>
  8. {% endif %}