django-simple-captcha icon indicating copy to clipboard operation
django-simple-captcha copied to clipboard

Django Simple Captcha is an extremely simple, yet highly customizable Django application to add captcha images to any Django form.

Results 48 django-simple-captcha issues
Sort by recently updated
recently updated
newest added

We just need to add empty Etag to our captcha_image view: response['Etag'] = ''

Hi, as [Wikipedia captcha](https://en.wikipedia.org/wiki/CAPTCHA#Image_recognition_CAPTCHAs_vs._character_recognition_CAPTCHAs) points out, image recognition seems to be still a challenge for robot based attacks. So my question is, if we could offer a challenger that makes...

enhancement

Hi, It work well on desktop devices, but on mobile devices (ios, android), the image disapear after ~1sec (cf. screenshot) ![img_0152](https://cloud.githubusercontent.com/assets/1042580/4740289/df864fea-5a0b-11e4-96e3-f5ceccdcea38.jpg) I don't have any idea of what's happen and...

add the method through ajax verify what the user input whether right how to use: ajax send messages: verify_data = $('#id_captcha_1').val(), key = $('#id_captcha_0').val(), if the return result is "true",right,or...

Added the posibility to get an image in double size for higher resolution displays. Only works with ttf fonts.

Add possible to change the ratio of height Now this multiplier is hardcoded to 1.2 ``` python size = (size[0] * 2, int(size[1] * 1.2)) ``` Full code ``` python...

It working correctly on my development machine but when I deployed the app I got these weird characters from nowhere, as you can see from this image: ![Screen Shot 2013-01-17...

_captcha/views.py:50_ `random.seed(key) # Do not generate different images for the same key ` This `random.seed(key)` can NOT ensure to generate the same images at high concurrent requests scenario. Suggest to...

Hi, Thank for the great library. I use it since a while. I look for a way to pass specific config to one `CaptchaField`, and not as default config! We...