The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Amon2::Plugin::Web::FillInFormLite - HTML::FillInForm::Lite

SYNOPSIS

  package MyApp;
  use parent qw/Amon2/;

  package MyApp::Web;
  use parent qw/MyApp Amon2::Web;
  __PACKAGE__->load_plugins(qw/Web::FillInFormLite/);
  1;

  package MyApp::Web::C::Root;

  sub post_edit {
    my $c = shift;
    $c->fillin_form($c->req());
    $c->render('edit.html');
  }

  1;

DESCRIPTION

HTML::FillInForm::Lite version of Amon2::Plugin::FillInForm

SEE ALSO

HTML::FillInForm::Lite, Amon2