mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
23 lines
590 B
HTML
23 lines
590 B
HTML
<dl>
|
|
<dt><div id="captcha_turnstile" data-language="{{ lang('TURNSTILE_LANG') }}"{% if TURNSTILE_THEME %} data-theme="{{ TURNSTILE_THEME }}"{% endif %}></div></dt>
|
|
</dl>
|
|
{% INCLUDEJS U_TURNSTILE_SCRIPT %}
|
|
<script>
|
|
function domReady(callBack) {
|
|
if (document.readyState === 'loading') {
|
|
document.addEventListener('DOMContentLoaded', callBack);
|
|
} else {
|
|
callBack();
|
|
}
|
|
}
|
|
|
|
domReady(() => {
|
|
/* global turnstile */
|
|
console.debug('_turnstileCb called');
|
|
|
|
turnstile.render('#captcha_turnstile', {
|
|
sitekey: '1x00000000000000000000AA',
|
|
theme: 'light',
|
|
});
|
|
});
|
|
</script>
|