Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-color-captcha-0.1.0.tar.gz (5.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page