public function createDeclarationForm() { $form = new Am_Form('dd-declaretion'); $form->addProlog('<h2>Declaration</h2>'); $form->addAdvCheckbox('i_agree')->setLabel('I wish to start Direct Debit')->addRule('required'); $form->addSaveButton('Proceed'); $form->addEpilog(<<<CUT <h2>Information</h2> <p>All the normal Direct Debit safeguards and guarantees apply. No changes in the amount, date, frequency to be debited can be made without notifying you at least five (5) working days in advance of your account being debited. In the event of error, you are entitled to an immediate refund from your Bank or Building Society. You have the right to cancel a Direct Debit Instruction at any time simply by writing to your Bank or Building Society, with a copy to us.</p> CUT ); $form->addHidden(Am_Controller::ACTION_KEY)->setValue($this->getRequest()->getActionName()); $form->addHidden('id')->setValue($this->getFiltered('id')); return $form; }