euscan-ng/euscanwww/euscan_captcha/forms.py

11 lines
361 B
Python
Raw Normal View History

from captcha.fields import ReCaptchaField
from registration.forms import RegistrationForm
2013-04-02 10:17:11 +02:00
from django.conf import settings
class RegistrationFormCaptcha(RegistrationForm):
2013-04-02 10:17:11 +02:00
captcha = ReCaptchaField(
public_key=settings.RECAPTCHA_PUBLIC_KEY,
private_key=settings.RECAPTCHA_PRIVATE_KEY,
use_ssl=True,
attrs={'theme': 'white'})