How to implement Google reCaptcha to Web Forms

Captcha implementation is very important to avoid spam comments and feedback and other messages from the form. Google reCAPTCHA is one of the simple way to archive this. to follow the below steps with example you can easily integrate the google recaptcha to the contact or any other forms.

How to Get Site key from Google reCAPTCHA

Step:1 Go to www.google.com/recaptcha and click  Get reCAPTCHA and  then it asks Sign in Google Account. You should sign in from google account.

google-recaptcha










Step 2: Enter label name and choose reCAPTCHA type  in that particular fields then enter domain name in domain field if more then one domain enter one by one in domain field.

google-recaptcha
Then accept the terms and condition then click register button.The next button you will get the site key and Secret key using those keys you can implement captcha to contact forms or some other web forms.

The below code is used to implement the Google reCaptcha

<html>
<head>
<title>reCAPTCHA demo: Simple page</title>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<form action="?" method="POST">
<div class="g-recaptcha" data-sitekey="your_site_key"></div>
<br/>
<input type="submit" value="Submit">
</form>
</body>
</html>


The result should be like below image:
google-captcha-implementation






Post a Comment

0 Comments