'login'));//create if this page has output $View->setTitle('Forgot Your Password?'); $View->form = new Form( $formID = 'forgotForm', array( 'successURL' => '/login/login.resetPass' ) ); $View->form->addElement( $id = 'loginEmail', $type = 'text', array( 'label' => 'Email', 'isRequired' => true, 'validationRules' => array('email'), 'size' => 60, 'maxLength' => 100 ) ); $View->form->endForm( array( 'submitValue' => 'Send me my password' ) ); //show view $View->loadView(); ?>