source: products/qPloneCaptchas/tags/1.0/skins/plone_captchas/captcha_widget.pt @ 2284

Last change on this file since 2284 was 1, checked in by myroslav, 19 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 576 bytes
Line 
1<div metal:define-macro="captcha" tal:omit-tag="">
2  <div class="field"
3       tal:define="hk here/getCaptcha;
4                   error errors/key|nothing"
5       tal:attributes="class python:test(error, 'field error', 'field')">
6
7     <input type="hidden" name="hashkey" tal:attributes="value hk" />
8
9     <label for="key">Enter the word below</label>
10     <span class="fieldRequired" title="Required">(Required)</span><br />
11     <input type="text" name="key" size="10" value="" />
12     <img tal:attributes="src string:${portal_url}/getCaptchaImage/${hk}"/>
13  </div>
14</div>
Note: See TracBrowser for help on using the repository browser.