1NAME 2 Template::Plugin::FillInForm - TT plugin for HTML::FillInForm 3 4SYNOPSIS 5 use Template; 6 use Apache; 7 use Apache::Request; 8 9 my $apr = Apache::Request->new(Apache->request); # or CGI.pm will do 10 my $template = Template->new( ... ); 11 $template->process($filename, { apr => $apr }); 12 13 # in your template 14 [% USE FillInForm %] 15 [% FILTER fillinform fobject => apr %] 16 <!-- this form becomes sticky --> 17 <form action="foo" method="POST"> 18 <input type="text" name="foo"> 19 <input type="hidden" name="bar"> 20 <input type="radio" name="baz" value="foo"> 21 <input type="radio" name="baz" value="bar"> 22 </form> 23 [% END %] 24 25DESCRIPTION 26 Template::Plugin::FillInForm is a plugin for TT, which allows you to 27 make your HTML form sticky using HTML::FillInForm. 28 29AUTHOR 30 Tatsuhiko Miyagawa <miyagawa@bulknews.net> 31 32 This library is free software; you can redistribute it and/or modify it 33 under the same terms as Perl itself. 34 35SEE ALSO 36 the Template manpage, the HTML::FillInForm manpage 37 38