Enabling reCAPTCHAΒΆ

Has been enabled via the django-recaptcha package.

Once you have signed up for reCAPTCHA.

Follow the below and an option will be in the form setup fields tab to add a reCAPTCHA.

Just add captcha to your INSTALLED_APPS settings:

INSTALLED_APPS = [
    ...
    'captcha'
    ...
]

Add the required keys in your settings:

RECAPTCHA_PUBLIC_KEY = 'xxx'
RECAPTCHA_PRIVATE_KEY = 'xxx'

If you would like to use the new No Captcha reCaptcha add the setting NOCAPTCHA = True. For example:

NOCAPTCHA = True