[Answered ]-Template django-simple-captcha? line break between image and input field

2👍

One way to solve it is to modify your settings and write:

CAPTCHA_OUTPUT_FORMAT = u'%(hidden_field)s%(text_field)s<br>%(image)s'

Also you can change the sequence of fields output.

Leave a comment