django recapcha code example
Example 1: django recapcha
captcha = fields.ReCaptchaField(
widget=widgets.ReCaptchaV2Checkbox(
attrs={
'data-theme': 'dark',
'data-size': 'compact',
}
)
)
Example 2: django recapcha
from django import forms
from captcha.fields import ReCaptchaField
from captcha.widgets import ReCaptchaV2Invisible
class FormWithCaptcha(forms.Form):
captcha = ReCaptchaField(widget=ReCaptchaV2Invisible)
Example 3: django recapcha
from django import forms
from captcha.fields import ReCaptchaField
class FormWithCaptcha(forms.Form):
captcha = ReCaptchaField()
Example 4: django recapcha
RECAPTCHA_DOMAIN = 'www.recaptcha.net'
Example 5: django recapcha
RECAPTCHA_PROXY = {'http': 'http://127.0.0.1:8000', 'https': 'https://127.0.0.1:8000'}
Example 6: django recapcha
RECAPTCHA_PUBLIC_KEY = 'MyRecaptchaKey123'
RECAPTCHA_PRIVATE_KEY = 'MyRecaptchaPrivateKey456'
Example 7: django recapcha
INSTALLED_APPS = [
...,
'captcha',
...
]
Example 8: django recapcha
SILENCED_SYSTEM_CHECKS = ['captcha.recaptcha_test_key_error']
Example 9: django recapcha
captcha = fields.ReCaptchaField(
widget=widgets.ReCaptchaV2Checkbox(
api_params={'hl': 'cl', 'onload': 'onLoadFunc'}
)
)