Example block-level help text here.


<?php
class Application_Form_Example1 extends Twitter_Bootstrap3_Form_Vertical
{
    public function 
init()
    {
        
$this->addElement('email''email', array(
            
'label' => 'Email address',
            
'placeholder' => 'Enter email',
        ));
        
$this->addElement('password''password', array(
            
'label' => 'Password',
            
'placeholder' => 'Password',
        ));
        
$this->addElement('file''file', array(
            
'label' => 'File input',
            
'description' => 'Example block-level help text here.',
        ));
        
$this->addElement('checkbox''checkbox', array(
            
'label' => 'Check me out',
        ));
        
$this->addElement('submit''submit', array(
            
'label' => 'Submit',
        ));
    }
}