mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-12 14:53:08 +00:00
14 lines
344 B
Python
14 lines
344 B
Python
from captcha.fields import CaptchaField
|
|
|
|
from django_nine.versions import DJANGO_GTE_3_0
|
|
|
|
if DJANGO_GTE_3_0:
|
|
from django_registration.forms import RegistrationForm
|
|
else:
|
|
from registration.forms import RegistrationForm
|
|
|
|
|
|
class CaptchaRegistrationForm(RegistrationForm):
|
|
"""Captcha registration form."""
|
|
|
|
captcha = CaptchaField()
|