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