NAME Template::Plugin::FillInForm - TT plugin for HTML::FillInForm SYNOPSIS use Template; use Apache; use Apache::Request; my $apr = Apache::Request->new(Apache->request); # or CGI.pm will do my $template = Template->new( ... ); $template->process($filename, { apr => $apr }); # in your template [% USE FillInForm %] [% FILTER fillinform fobject => apr %]
[% END %] DESCRIPTION Template::Plugin::FillInForm is a plugin for TT, which allows you to make your HTML form sticky using HTML::FillInForm. AUTHOR Tatsuhiko Miyagawa This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO the Template manpage, the HTML::FillInForm manpage