python-django自定义重置密码表格
作者:互联网
我是django的初学者(django 1.7 python 2.7).
我正在尝试将no captcha recaptcha添加到我的django重置密码表单中.
我正在尝试使用此recaptcha djano plugin.
我已按照说明进行操作,并添加了必要的设置:
将django-recaptcha安装到Python路径.
已将验证码添加到INSTALLED_APPS设置中.
在我的settings.py文件中添加了以下内容:
RECAPTCHA_PUBLIC_KEY = '76wtgdfsjhsydt7r5FFGFhgsdfytd656sad75fgh' # fake - for the purpose of this post.
RECAPTCHA_PRIVATE_KEY = '98dfg6df7g56df6gdfgdfg65JHJH656565GFGFGs' # fake - for the purpose of this post.
NOCAPTCHA = True
然后,说明建议将验证码添加到表单,如下所示:
from django import forms
from captcha.fields import ReCaptchaField
class FormWithCaptcha(forms.Form):
captcha = ReCaptchaField()
如何访问内置的重置密码表格?作为一个初学者,我怀疑我必须自定义内置的重置密码表格,但是我该怎么做呢?我什至不确定内置的重置密码表格在哪里.如何自定义重置密码形式的构建或如何推送教程的示例很方便.
我已经搜索过谷歌,但找不到合适的东西.
解决方法:
您要自定义password_reset
视图.默认情况下,它使用您可以自定义的PasswordResetForm.
# in e.g. myapp/forms.py
from django.contrib.auth.forms import PasswordResetForm
class CaptchaPasswordResetForm(PasswordResetForm):
captcha = ReCaptchaField()
...
然后在您的urls.py中,导入您的表单,并使用password_reset_form参数指定表单.
from django.contrib.auth import views as auth_views
from myapp.forms import CaptchaPasswordResetForm
urlpatterns = [
...
url(
'^password_reset/',
auth_views.password_reset,
{'password_reset_form': CaptchaPasswordResetForm},
)
]
有关在您的URL中包括密码重置视图的更多信息,请参见the docs.
标签:recaptcha,django-forms,python,django,reset-password 来源: https://codeday.me/bug/20191119/2038345.html