Go to the reCAPTCHA website:
Sign in with your Google Account:
Register a New Site:
Choose reCAPTCHA Type:
Add Domains:
Accept reCAPTCHA Terms of Service:
Get API Keys:
Add the following script to your HTML just before the closing </head>
tag:
html<head>
<!-- Other head elements -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
Place the reCAPTCHA widget where you want the checkbox to appear in your HTML form:
html<form action="your_form_processing_script.php" method="post">
<!-- Your form fields go here -->
<div class="g-recaptcha" data-sitekey="YOUR_SITE_KEY"></div>
<input type="submit" value="Submit">
</form>
Replace "YOUR_SITE_KEY"
with the actual Site Key you obtained.
Add the reCAPTCHA script to your HTML:
html<head>
<!-- Other head elements -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
Add the reCAPTCHA widget to your form:
html<form action="your_form_processing_script.php" method="post">
<!-- Your form fields go here -->
<button class="g-recaptcha"
data-sitekey="YOUR_SITE_KEY"
data-callback="onSubmit"
data-badge="inline">Submit</button>
</form>
Replace "YOUR_SITE_KEY"
with the actual Site Key you obtained.
Verify reCAPTCHA on the server-side when processing the form submission. Send a request to Google's reCAPTCHA API to validate the user's response.
Here is a simplified example in PHP:
php<?php
// your_form_processing_script.php
$recaptcha_secret = "YOUR_SECRET_KEY";
$response = $_POST['g-recaptcha-response'];
$verify_url = "https://www.google.com/recaptcha/api/siteverify?secret={$recaptcha_secret}&response={$response}";
$verify = file_get_contents($verify_url);
$result = json_decode($verify);
if ($result->success) {
// Process the form submission
// ...
} else {
// Handle failed reCAPTCHA verification
// ...
}
?>
Replace "YOUR_SECRET_KEY"
with your actual Secret Key.
Buysalesbd.com Bangladesh is a leading online shopping site based in Bangladesh that brings you great deals, with platforms existing across Asia including Singapore, Thailand, Indonesia, Vietnam, Philippines, and Taiwan. We offer unbeatable deals featuring an endless range of products priced at affordable rates. What is even better? We enhance your experience with the eCommerce Guarantee, which means your payment is held in our system and only released to the seller after you have received your purchase in good condition! All because we value you as our customer. What are you waiting for? Come aboard and start browsing!