<?php //================================================ // Create Form //================================================ $form = new form_too(); //--------------------------------------- // Form Label //--------------------------------------- $form->label('Test Form'); //--------------------------------------- // Add Hidden Variables //--------------------------------------- $form->add_hidden('test1', 1); $form->add_hidden('test2', 'Bob', array('class' => 'test_class')); //--------------------------------------- // Start Fieldset //--------------------------------------- $form->start_fieldset('Test', array('class' => 'fs_class'), array('class' => 'leg_class')); $form->add_label('Label name'); $form->add_element(input(array('type' => 'text', 'placeholder' => "Type something..."))); //--------------------------------------- // End Fieldset //--------------------------------------- $form->end_fieldset(); $form->add_element(span('Example block-level help text here.', array('class' => "help-block"))); $form->add_label(input(array('type' => 'checkbox')) . 'Check me out', array('class' => "checkbox")); $form->add_element(button('Submit', array('type' => "submit", 'class' => "btn"))); //--------------------------------------- // Triple Layered Divs //---------------------------------------
<?php //================================================ // Create Form //================================================ $form = new form_too(); // Form Label $form->label('Legend'); // Add Elements / Labels $form->add_label('Label name'); $form->add_element(input(array('type' => 'text', 'placeholder' => "Type something..."))); $form->add_element(span('Example block-level help text here.', array('class' => "help-block"))); $form->add_label(input(array('type' => 'checkbox')) . 'Check me out', array('class' => "checkbox")); $form->add_element(button('Submit', array('type' => "submit", 'class' => "btn"))); //================================================ // Render Form //================================================ $form->render();