6 lines
195 B
Python
6 lines
195 B
Python
|
from captcha.fields import ReCaptchaField
|
||
|
from registration.forms import RegistrationForm
|
||
|
|
||
|
class RegistrationFormCaptcha(RegistrationForm):
|
||
|
captcha = ReCaptchaField(attrs={'theme': 'white'})
|