source: products/quintagroup.captcha.core/trunk/quintagroup/captcha/core/skins/captcha_core/captcha_widget.pt

Last change on this file was 2771, checked in by chervol, 14 years ago

removed tabindex

File size: 1010 bytes
Line 
1<div metal:define-macro="captcha"
2     tal:omit-tag=""
3     i18n:domain="quintagroup.captcha.core"
4     tal:define="portal_url here/plone_portal_state/portal_url">
5  <div class="field"
6       tal:define="hk here/getCaptcha;
7                   error errors/key|nothing"
8       tal:attributes="class python:error and 'field error' or 'field'">
9     <input type="hidden"
10            name="hashkey"
11            tal:attributes="value hk" />
12     <label i18n:translate="enter_word">Enter the word below</label>
13     <span class="fieldRequired" title="Required"
14           i18n:domain="plone" i18n:attributes="title title_required;"
15           i18n:translate="label_required">(Required)</span>
16     <div class="formHelp"></div>
17     <div tal:content="error">Validation error output</div>
18     <input type="text"
19            tabindex=""
20            name="key"
21            size="10"
22            value=""/>
23     <img tal:attributes="src string:${portal_url}/getCaptchaImage/${hk}" alt="Enter the word"/>
24  </div>
25</div>
Note: See TracBrowser for help on using the repository browser.