Hi,
I have esthetic's problem.
Zend Form not in place label value, how to move them that they will be exactly above text box, and not from left?
(I didn't put filters and validation to make this code simpler here)
My Code Login.php form:
public function init()
{
$username = new Zend_Form_Element_Text('username');
$username->setLabel("username");
$password = new Zend_Form_Element_Password('password');
$password->setLabel('password');
$this->addElements(array($username, $password));
}
Thanks,
Yosef