# jango-multi-captcha-admin **Repository Path**: Cham_1/jango-multi-captcha-admin ## Basic Information - **Project Name**: jango-multi-captcha-admin - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-08 - **Last Updated**: 2022-01-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # django-multi-captcha-admin [![PyPi Version](https://img.shields.io/pypi/v/django-multi-captcha-admin.svg)](https://pypi.python.org/pypi/django-multi-captcha-admin) [![GitHub stars](https://img.shields.io/github/stars/a-roomana/django-multi-captcha-admin.svg?style=social)](https://github.com/a-roomana/django-multi-captcha-admin) Easy added captcha to Django administration login page. --- ## Dependency To use this module you need to install django and one of the captcha engines, which you can install it with easy_install or pip. --- ## Installation Install using `pip`: pip install django-multi-captcha-admin Or using `easy_install`: easy_install django-multi-captcha-admin Add `'multi_captcha_admin'` to your `INSTALLED_APPS` setting before `'django.contrib.admin'` app. ```python INSTALLED_APPS = [ ... 'multi_captcha_admin', 'django.contrib.admin', ... ] ``` ### Engines We support three famous engines to render CAPTCHA. You need to install one of them, then add it to your django project according to their documents. - [simple-captcha](https://github.com/mbi/django-simple-captcha) - [recaptcha](https://github.com/praekelt/django-recaptcha) - [recaptcha2](https://github.com/kbytesys/django-recaptcha2) For more information, please go to the engine site. Then add the following to your `settings.py` with the name of the installed engine: ```python MULTI_CAPTCHA_ADMIN = { 'engine': 'recaptcha2', } ``` ---------- ## Results [recaptcha2](https://github.com/kbytesys/django-recaptcha2) ![captcha of recaptcha2](http://bayanbox.ir/view/2417903076718397977/reCaptcha2.png) [recaptcha](https://github.com/praekelt/django-recaptcha) ![captcha of recaptcha](http://bayanbox.ir/view/2014387201108001651/reCaptcha.png) [simple captcha](https://github.com/mbi/django-simple-captcha) ![captcha of recaptcha](http://bayanbox.ir/view/721684099022571779/simple-captcha.png)