Difference between revisions of "Google NoCaptcha"
From KOP KB
(Created page with "=Header Code= At the top of the page you will want this code in the header tag somewhere. <syntaxhighlight lang="html4strict"> <script src='https://www.google.com/recaptcha/a...") |
|||
Line 4: | Line 4: | ||
<syntaxhighlight lang="html4strict"> | <syntaxhighlight lang="html4strict"> | ||
<script src='https://www.google.com/recaptcha/api.js'></script> | <script src='https://www.google.com/recaptcha/api.js'></script> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | =The Div= | ||
+ | The div below you will try to put as near to the submit button as you want. | ||
+ | <syntaxhighlight lang="html4strict"> | ||
+ | <div class="g-recaptcha" data-sitekey="yourpublickey" data-theme="dark" ></div> | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 14:41, 29 March 2016
Header Code
At the top of the page you will want this code in the header tag somewhere.
<script src='https://www.google.com/recaptcha/api.js'></script>
The Div
The div below you will try to put as near to the submit button as you want.
<div class="g-recaptcha" data-sitekey="yourpublickey" data-theme="dark" ></div>