Skip to content

Instantly share code, notes, and snippets.

@tournasdim
Forked from michael-romer/gist:3922739
Created April 5, 2014 19:36
Show Gist options
  • Save tournasdim/9997007 to your computer and use it in GitHub Desktop.
Save tournasdim/9997007 to your computer and use it in GitHub Desktop.
<?php
namespace Helloworld\Form;
use Zend\Form\Form;
class SignUp extends Form
{
public function __construct()
{
parent::__construct('signUp');
$this->setAttribute('action', '/signup');
$this->setAttribute('method', 'post');
$this->setInputFilter(new \Helloworld\Form\SignUpFilter());
$this->add(new \Helloworld\Form\UserFieldset());
$this->add(array(
'name' => 'submit',
'attributes' => array(
'type' => 'submit',
'value' => 'Eintragen'
),
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment