1.下载模块
pip install django-simple-captcha
2.在一级urls内配置URL
url(r'^captcha/', include('captcha.urls')),
3.生成验证码表数据库
python manage.py migrate
4.在forms组件中添加(如果用其他的验证信息的组件也是一样的)
from captcha.fields import CaptchaField
captcha=CaptchaField()
5.前端使用
{{ form.captcha}}