v6.1 a
Requires a couple of changes to the contact form's
1. Each <form MUST have a class called - contactForm
2. All buttons should be replaced with
<button type="button" class="btn btn-primary" id="submitBtn" name="Submit">Submit</button>
3. You need to add the attached script into the scripts folder and then add the appropriate script ref in the jsp
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script type="text/javascript" src="${ctx}/upload/scripts/fpro_plugins/reCapTest.js"></script>
4. You need to add the reference to the recaptcha after the form fields:
<div class="g-recaptcha" data-sitekey="6LeggOMZAAAAAD8TG4FBumDPIiwcENmfjvz7u5Zh"></div>
A v65 example is:
<div class="form-group">
<div class="col-sm-3"> </div>
<div class="col-sm-9">
<div class="g-recaptcha" data-sitekey="6LeggOMZAAAAAD8TG4FBumDPIiwcENmfjvz7u5Zh"></div>
</div>
</div>