Skip to content

Instantly share code, notes, and snippets.

@zraly
zraly / FooForm.latte
Last active February 11, 2020 19:19
Formulář jako komponenta s vlastní šablonou / Form as a component with its own template
{form myForm}
<div class="form-group">
{label book class => 'control-label'/}
{input book class => form-control}
</div>
<div class="form-group">
{input send class => 'btn btn-primary'}
</div>
{/form}