
Catalyst::View::FillInform - Moose role for HTML::FillInform

In your TT view:
package 'MyApp::View::TT'; use Moose; extends 'Catalyst::View::TT'; with 'Catalyst::View::FillInForm';
To use $c->req->parameters to fill in a form:
$c->stash( fillinform => 1 );
To use some other hashref to fill in a form:
$c->stash( fillinform => $params );

This role will use HTML::FillInForm to fill in fields in an HTML form.

Gerda Shank (gshank) - <gshank@cpan.org>

This module itself is copyright (c) 2009 Gerda Shank and is licensed under the same terms as Perl itself.