I am making a website form and I would like to be able to use the type of reCAPTCHA where you select all the squares on an image, which contain a certain item (like a street sign). However, it doesn't explain it on google's documentation. This is how you would go about implementing a checkbox reCAPTCHA iN 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>
I was wondering if you have to modify this in any way in order to get the image reCAPTCHA, or if there is a completely different piece of code I would have to implement.