summaryrefslogtreecommitdiff
path: root/modules/recaptcha/views/form_recaptcha.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/recaptcha/views/form_recaptcha.html.php')
-rw-r--r--modules/recaptcha/views/form_recaptcha.html.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/recaptcha/views/form_recaptcha.html.php b/modules/recaptcha/views/form_recaptcha.html.php
new file mode 100644
index 0000000..7481d00
--- /dev/null
+++ b/modules/recaptcha/views/form_recaptcha.html.php
@@ -0,0 +1,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>
+