mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
11 lines
297 B
Twig
11 lines
297 B
Twig
<script>
|
|
$(document).ready(function() {
|
|
grecaptcha.ready(function() {
|
|
grecaptcha.execute('{{ config.recaptcha_site_key }}', {action: '{{ action }}'}).then(function(token) {
|
|
if (token) {
|
|
document.getElementById('g-recaptcha-response').value = token;
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script> |