mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 06:13:10 +00:00
9 lines
207 B
Python
9 lines
207 B
Python
from captcha.fields import CaptchaField
|
|
|
|
from registration.forms import RegistrationForm
|
|
|
|
|
|
class CaptchaRegistrationForm(RegistrationForm):
|
|
"""Captcha registration form."""
|
|
|
|
captcha = CaptchaField()
|