tournasdim
4/5/2014 - 7:38 PM

gistfile1.php

<?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->add(array(
            'name' => 'name',
            'attributes' => array(
                'type'  => 'text',
                'id' => 'name'
            ),
            'options' => array(
                'label' => 'Ihr Name:'
            ),
        ));

        $this->add(array(
            'name' => 'email',
            'attributes' => array(
                'type'  => 'email',
                'id' => 'email'
            ),
            'options' => array(
                'label' => 'Ihre E-Mail-Adresse:'
            ),
        ));

        $this->add(array(
            'name' => 'submit',
            'attributes' => array(
                'type'  => 'submit',
                'value' => 'Eintragen'
            ),
        ));
    }
}