I'm in the process of [attempting] to create a simple login form, using
Zend_Form for the very first time. So far I'm failing, even after
reading the docs.
The part that's really getting me are decorators. I know what they're
supposed to do, I just can't figure out how to use them :o All that
this form contains are two text inputs: username and password. I want
the resulting form to look like:
Username: <username_input>
Password: <password_input>
<submit>
However, I can't figure out how to alter the decorators in order to
accomplish this, short of writing my own decorator classes; and I'm sure
there must be an easier way.
Sorry for my extreme newbiness...