I would like to wrap form elements with labels as such
<label for="email">E-mail <input type="text" name="email" id="email" /></label>
The only option I could find is to alter the placement; however it only accepts 'prepend' and 'append':
<!-- prepend -->
<label for="email">E-mail</label> <input type="text" name="email" id="email" />
<!-- append -->
<input type="text" name="email" id="email" /> <label for="email">E-mail</label>
That is not what I am after. I could alter the Zend_Form_Decorator_Label class, but that is the last alternative.