Home - xudid/Ui GitHub Wiki
Welcome to Brick/UI
With Brick/Ui you will be able to generate html tags objects .
use Brick\Ui\{SubmitButton,TextInput,Form};
$nameInput = new TextInput();
$nameInput ->setAttribute("placeholder","name");
$form = new Form();
$form ->addCssClass("formclass");
$form->addElement($nameInput );
$submitButton = new SubmitButton("Valider");
$form->addElement($submitButton);
work in progress .....