mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-10 23:19:06 -04:00
18 lines
531 B
PHP
18 lines
531 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div id="g-recaptcha"></div>
|
|
<script type="text/javascript" src="http://api.recaptcha.net/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>
|
|
|