-------------------------- Captchas in a formlib form -------------------------- Using quintagroup.formlib.captcha in a formlib form is simple. Just add a Captcha field to your schema, and away you go: >>> from zope.interface import Interface >>> from quintagroup.formlib.captcha.form import Captcha >>> class CaptchaSchema(Interface): ... captcha = Captcha( ... title=_(u'Type the code'), ... description=_(u'Type the code from the picture shown below.')) and formlib will take care of the rest. The widget associated with this field will render the captcha and verify the use input automatically.