blob: 7481d000681d5407f7b723c1d6cc0c0555d247d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="g-recaptcha"></div>
<script type="text/javascript" src="<?= request::protocol() ?>://www.google.com/recaptcha/api/js/recaptcha_ajax.js">
</script>
<script type="text/javascript">
setTimeout(function() {
Recaptcha.create(
"<?= $public_key ?>",
"g-recaptcha",
{
theme: "white",
custom_translations : { instructions_visual : <?= t("Type words to check:")->for_js() ?>},
callback: Recaptcha.focus_response_field
}
);
}, 500);
</script>
|