Google Captcha V3 integrated form field
GIT:
pip install git+https://github.com/sitmena/[email protected]
Add the package captcha_field
to your installed apps. Then you can simply add
to your form like so,
from captcha_field import CaptchaField
class MyForm(forms.Form):
my_field_1 = forms.CharField(required=True, label='')
...
captcha = CaptchaField(google_captcha_key='my_key',
google_captcha_secret='my_secret')