Use reCaptcha with ZK"

From Documentation
Line 6: Line 6:
  
 
= Introduction =  
 
= Introduction =  
https://www.google.com/recaptcha/intro/invisible.html
+
Google [https://www.google.com/recaptcha/intro/invisible.html reCaptach] is an easy to use and free service that protects your site from spam and bot. Users usually jsut
  
 
https://developers.google.com/recaptcha/docs/start
 
https://developers.google.com/recaptcha/docs/start
 
+
See also: [https://www.zkoss.org/wiki/ZK_Component_Reference/Essential_Components/Captcha Captcha]
[https://www.zkoss.org/wiki/ZK_Component_Reference/Essential_Components/Captcha Captcha]
 
  
 
= Get reCaptcha =
 
= Get reCaptcha =

Revision as of 09:04, 30 March 2017

DocumentationSmall Talks2017MayUse reCaptcha with ZK
Use reCaptcha with ZK

Author
Hawk Chen, Engineer, Potix Corporation
Date
?
Version
ZK 8.0.4

Introduction

Google reCaptach is an easy to use and free service that protects your site from spam and bot. Users usually jsut

https://developers.google.com/recaptcha/docs/start See also: Captcha

Get reCaptcha

Please follow Google's guide to get reCaptcha API key: https://developers.google.com/recaptcha/docs/start

How to Apply

Include recaptcha API & Configuration

<zk xmlns:n="native" xmlns:c="client">
	<script type="text/javascript" src='https://www.google.com/recaptcha/api.js' 
	defer="true" />
..

	<n:div class="g-recaptcha" data-sitekey="6Lcj5AYTAAAAAHp_ATdyZcWkMi7lzO_JZPMhYj4S"
	data-callback="afterValidate" />

Check Verification Result

Reuse

Comments



Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.