CaptchaBundle/Resources/views/captcha.html.twig

12 lines
267 B
Twig
Raw Normal View History

{% block captcha_widget %}
2012-12-04 12:20:23 +01:00
{% if is_human %}
-
{% else %}
{% spaceless %}
<img src="{{ captcha_code }}" alt="" title="captcha" width="{{ captcha_width }}" height="{{ captcha_height }}" />
{{ form_widget(form) }}
{% endspaceless %}
2012-12-04 12:20:23 +01:00
{% endif %}
{% endblock %}