mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-02 12:34:59 +02:00
16 lines
337 B
HTML
16 lines
337 B
HTML
{% if S_RECAPTCHA_AVAILABLE %}
|
|
<dl>
|
|
<dt> </dt>
|
|
<dd>
|
|
<noscript>
|
|
<div class="warningbox">{{ lang('RECAPTCHA_NOSCRIPT') }}</div>
|
|
</noscript>
|
|
|
|
{{ lang('RECAPTCHA_INVISIBLE') }}
|
|
<script src="{{ U_RECAPTCHA_SCRIPT }}" async defer></script>
|
|
</dd>
|
|
</dl>
|
|
{% else %}
|
|
{{ lang('RECAPTCHA_NOT_AVAILABLE') }}
|
|
{% endif %}
|