使用现有的 django.contrib.auth.forms 实现 Django Simple Captcha

发布于 2024-10-15 04:33:52 字数 287 浏览 3 评论 0原文

我想使用此处找到的 Django Simple Captcha 在我的 django 注册表单上添加验证码: http://code.google.com/p/django-simple-captcha/

如果您创建一个新表单,这非常有用,但我使用的是 django 附带的 django.contrib.auth.forms 。知道如何使用现有的 django auth 视图来实现验证码吗?谢谢你!

I would like to add captcha on my django registration form using Django Simple Captcha found here: http://code.google.com/p/django-simple-captcha/

This works great if you create a new form but I'm using the django.contrib.auth.forms the one that comes with django. Any idea how I might be able to implement captcha with the existing django auth views? Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望喜 2024-10-22 04:33:52

您可以简单地对 django.contrib.auth.forms 表单进行子类化并添加 CaptchaField,如下所示:

from django.contrib.auth.forms import UserCreationForm
from captcha.fields import CaptchaField

class CaptchaUserCreationForm(UserCreationForm):
    captcha = CaptchaField()

并像往常一样在视图中使用新表单:

if request.POST:
    form = CaptchaUserCreationForm(request.POST)
    if form.is_valid():
        return HttpResponseRedirect('/?ok')
else:
    form = CaptchaUserCreationForm()

You could simply subclass the django.contrib.auth.forms forms and add a CaptchaField, like this:

from django.contrib.auth.forms import UserCreationForm
from captcha.fields import CaptchaField

class CaptchaUserCreationForm(UserCreationForm):
    captcha = CaptchaField()

and use the new Form in your view as usual:

if request.POST:
    form = CaptchaUserCreationForm(request.POST)
    if form.is_valid():
        return HttpResponseRedirect('/?ok')
else:
    form = CaptchaUserCreationForm()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文