Código HTML:
Ver original
y este es mi form:
Código PHP:
este mi _login.phtmlVer original
class Application_Form_LoginForm extends Zend_Form { public function init() { $this->setDisableLoadDefaultDecorators(true); 'Form' )); $this->setMethod('post'); $this->setAction(''); 'required' => true, 'label' => 'Usuario:' ) ); 'required' => true, 'label' => 'Contraseña:' ) ); 'required' => false, 'ignore' => true, 'label' => 'Ingresar' ) ); // 'decorators' => array( // 'ViewHelper', // array ('HtmlTag', array ('tag' => 'dl','id' => 'login' ) ) ) // We want to display a 'failed authentication' message if necessary; // we'll do that with the form 'description', so we need to add that // decorator. // $this->addDecorators ( // array ('FormElements', // array ('HtmlTag', array ('tag' => 'dl','id' => 'login' ) ), // array ('Description', array ('placement' => 'prepend') ), // 'Form' // ) ); } }
Código HTML:
y mi salida es este, que es totalmente diferente:Ver original
Código HTML:
Ver original
gracias de antemano