Skip to content

avigmati/django-yacaptcha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

===== Django YaCaptcha

Django YaCaptcha - Yandex Captcha (cleanweb) form field/widget integration app.

Uses https://github.com/coagulant/cleanweb

Quick start

  1. Add "yacaptcha" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = (
        'yacaptcha',
)
  1. Get the API key http://api.yandex.ru/cleanweb and add to your project settings:
YACAPTCHA_KEY = 'your_api_key'
  1. Add YaCaptchaField in your form like this::
from yacaptcha.fields import YaCaptchaField
class TestForm(forms.Form):
        name = forms.CharField()
        captcha = YaCaptchaField()
  1. Add form field widget template You may create your own template for field widget. For this add in project settings:
YACAPTCHA_WIDGET_TEMPLATE = 'path_to_widget.html'
Or use default widget.html from package django-yacaptcha/templates/yacaptcha/widget.html
  1. If you use django-registration, you may use registartion backend with yacaptcha field like this:
url(r'^accounts/', include('yacaptcha.backends.default.urls')), # yacaptcha backend for registration form
(r'^accounts/', include('registration.backends.default.urls')),

About

Yandex Captcha (cleanweb) form field/widget integration app.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published