how to add captcha in django forms

Solutions on MaxInterview for how to add captcha in django forms by the best coders in the world

showing results for - "how to add captcha in django forms"
Cedric
26 Jan 2018
1Using django-simple-captcha
2Install django-simple-captcha via pip: pip install django-simple-captcha.
31. Add captcha to the INSTALLED_APPS in your settings.py.
42. Run python manage.py migrate.
53. Add an entry to your urls.py : urlpatterns += [ path('captcha/', include('captcha.urls')), ]
6learn more at : django-simple-captcha.readthedocs.io