Source for file User.php
Documentation is available at User.php
* Form for handling user login.
* @author Margus Sellin <margus@bitweb.ee>
* @copyright Copyright (C) 2011. All rights reserved. Margus Sellin
* Initializes the form with essential elements.
$username =
new Zend_Form_Element_Text('username');
$username->setLabel('Kasutajanimi');
$username->setRequired(true);
$password =
new Zend_Form_Element_Password('password');
$password->setLabel('Parool');
$password->setRequired(true);
$this->addElement($username);
$this->addElement($password);
Documentation generated on Tue, 14 Jun 2011 16:13:52 +0300 by phpDocumentor 1.4.1