Simple and pretty user-friendly captcha module for Django framework.
Project description
Quick Start
Add color_captcha to INSTALLED_APPS
INSTALLED_APPS = [
...
'color_captcha',
...
]
Run collectstatic manage command
> python manage.py collectstatic
Add color_captcha.css file to your template
<link rel="stylesheet" href="{{ STATIC_URL }}color_captcha/css/color_captcha.css" type="text/css"/>
Add ColorCaptchaField into your form
from django import forms
from color_captcha.fields import ColorCaptchaField
class MyForm(forms.Form)
...
captcha = ColorCaptchaField(label='Choose a color')
...
Configuration
Feel free to configure your captcha with the following options.
CAPTCHA_COLORS
Default:
[ ('white', 'white'), ('blue', 'blue'), ('red', 'red'), ]An iterable of two-string-value tuples. The first value in tuple is a HEX color code (e.g. #FFF) or css color constant (e.g. white). The second value is a color name for user who has to solve the captcha.
CAPTCHA_ERROR_MESSAGES
Default:
{ 'wrong': 'Wrong answer', 'required': 'This field is required', 'internal': 'Internal error', }A dictionary with error messages for captcha field. You can override any of them.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-color-captcha-0.1.0.tar.gz.
File metadata
- Download URL: django-color-captcha-0.1.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
549b3fcf560752498f3d10011acca2b95ae4914363ca46e1a74cc6b8b3a9f7bf
|
|
| MD5 |
9636b243f6aa7dcafea572e46fd142b7
|
|
| BLAKE2b-256 |
9151db479c38313a499ad32eec581a857d44645625ec657a188c46802ba878a2
|