Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 768 Bytes

recaptcha.rst

File metadata and controls

31 lines (19 loc) · 768 Bytes

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