Hi !
I have an issue with the form served at Bl-Hud (elated-carson-9071e0 on netlify). The form is using netlify’s captcha.
The build is fine, the form name appears just fine in netlify UI and I’m able to receive submissions, but only on the first navigation to the site. After that, the captcha does not appear anymore and the form does not work anymore unless I clear the browser cache.
Indeed when I open the dev tools, I can still see the data-netlify=true attribute on the form.
When I clear the cache, the attribute disappear and everything is fine.
any hint ?
Here’s the form code :
<form name="contact" method="POST" data-netlify="true" data-netlify-recaptcha="true">
<p>
<label>Email address:</label>
<br>
<input type="email" name="email">
</p>
<p>
<label>Message:</label>
<br>
<textarea name="message"></textarea>
</p>
<div data-netlify-recaptcha="true"></div>
<p>
<button type="submit">Send</button>
</p>
</form>