Hi,
I'm having real trouble formatting Zend_Captcha as my designer would like
(http://framework.zend.com/issues/browse/ZF-5197 is *really* not helping).
What I need to do is to have the Captcha image displayed *after* the input
text box.
Output currently looks like:
{code}
img alt="" src="/assets/captcha/7d6b3178fffd1dcffaf1e3d1bde740d5.png"/><br/>
<input type="hidden" name="captcha[id]"
value="7d6b3178fffd1dcffaf1e3d1bde740d5" helper="formText" id="captcha-id"
/>
<input type="text" name="captcha[input]" id="captcha-input" value=""
helper="formText" />
{code}
and I need it to look like
{code}
<input type="hidden" name="captcha[id]"
value="7d6b3178fffd1dcffaf1e3d1bde740d5" helper="formText" id="captcha-id"
/>
<input type="text" name="captcha[input]" id="captcha-input" value=""
helper="formText" />
img alt="" src="/assets/captcha/7d6b3178fffd1dcffaf1e3d1bde740d5.png"/>
{code}
That's it! I thought I was pretty good with form decorators & placements &
so on until I tried to do this simple thing. Any pointers?
Thanks,
Mark
--
View this message in context:
http://www.nabble.com/Zend_Captcha-options-tp25120387p25120387.html
Sent from the Zend Framework mailing list archive at Nabble.com.