From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

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

SYNOPSIS

__PACKAGE__->load_plugins(qw/Web::FillInFormLite/);
post '/edit' => sub {
my $c = shift;
unless (is_valid()) {
$c->fillin_form($c->req);
return $c->render('edit.html');
}
$c->dbh->update($c->req());
return $c->redirect('/finished');
};

DESCRIPTION

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

SEE ALSO

HTML::FillInForm::Lite, Amon2