12 lines
364 B
Python
12 lines
364 B
Python
from django.conf import settings
|
|
|
|
from captcha.fields import ReCaptchaField
|
|
from registration.forms import RegistrationForm
|
|
|
|
class RecaptchaRegistrationForm(RegistrationForm):
|
|
captcha = ReCaptchaField(
|
|
public_key=settings.RECAPTCHA_PUBLIC_KEY,
|
|
private_key=settings.RECAPTCHA_PRIVATE_KEY,
|
|
use_ssl=True,
|
|
attrs={'theme': 'white'})
|