summaryrefslogtreecommitdiff
path: root/modules/recaptcha/views/form_recaptcha.html.php
blob: f5b363357f0432a7096bdc61ddcc6ebec69dbab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div id="gRecaptcha"></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 ?>",
      "gRecaptcha",
      { theme: "white", callback: Recaptcha.focus_response_field });
  }, 0);
</script>