{% if show_grecaptcha_badge == false %}
{% block stylesheet %}
<style>
.grecaptcha-badge {
visibility: hidden;
}
</style>
{% endblock stylesheet %}
{% endif %}
{% block javascript %}
<script src="https://www.google.com/recaptcha/api.js?render={{ recaptcha_site_key }}"></script>
<script>
grecaptcha.ready(function () {
grecaptcha.execute('{{ recaptcha_site_key }}', { action: 'contact' }).then(function (token) {
var recaptchaResponse = document.getElementById('contact_recaptcha');
recaptchaResponse.value = token;
});
$('#recaptcha_mode').insertAfter('#contact_recaptcha');
});
</script>
{% endblock javascript %}