Help for this page

Select Code to Download


  1. or download this
    [% INCLUDE input
       type => 'text'
    ...
    [% BLOCK input %]
    <input type="[% type %]" name="[% name %]" value="[% value %]" />
    [% END %]
    
  2. or download this
    [% items = [
       { name => 'foo' value='baz'}
    ...
    [% FOREACH text = items %]
    <input type="text" name="[% text.name %]" value="[% text.value %]" />
    [% END %]