I have aesthetic problem.
Zend Form not in place label value, how to move them that they will be exactly above text box, and not from left?
(Ben burada bu kod kolaylaştırmak için filtreler ve doğrulama koymadı)
Benim Kod login.php formu:
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));
}