<?php

class Todojsc_Form_Register extends Zend_Form
{

    public function init()
    {
        $this->setAction('register');
        $this->setMethod('post');

        $this->addElement('text', 'username', array('label' => 'User Name:'));
        $this->addElement('password', 'password', array('label' => 'Password:'));
        $this->addElement('password', 'rpassword', array('label' => 'Repeat Password:'));
        $this->addElement('submit', 'submit', array('label' => 'Register', 'ignore' => true));
    }


}

