Changeset 677

Show
Ignore:
Timestamp:
12/01/06 09:55:49
Author:
crchemist
Message:

Added tabindex to input field.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • qPloneCaptchas/trunk/skins/plone_captchas/captcha_widget.pt

    r676 r677  
    55       tal:attributes="class python:test(error, 'field error', 'field')"> 
    66 
    7      <input type="hidden" name="hashkey" tal:attributes="value hk" /> 
     7     <input type="hidden" 
     8            name="hashkey" 
     9            tal:attributes="value hk" /> 
    810 
    911     <label for="key">Enter the word below</label> 
    1012     <span class="fieldRequired" title="Required">(Required)</span><br /> 
    11      <input type="text" name="key" size="10" value="" /> 
     13     <input type="text" 
     14            tabindex="" 
     15            name="key" 
     16            size="10" 
     17            value="" 
     18            tal:attributes="tabindex tabindex/next;"/> 
    1219     <img tal:attributes="src string:${portal_url}/getCaptchaImage/${hk}"/> 
    1320  </div>