public function indexAction()
 {
     $Form = new App_Form_Login();
     $Request = $this->getRequest();
     if ($Request->isPost()) {
         if ($Form->isValid($Request->getPost())) {
             if ($this->_process($Form->getValues())) {
                 # We are authenticated
                 $this->_helper->redirector('index', 'index');
             }
         }
     }
     $this->view->form = $Form;
 }