NAME

Form::Tiny::Inline - Form::Tiny without hassle

SYNOPSIS

my $form = Form::Tiny::Inline->new(
	field_defs => [
		{name => "some_field"},
		...
	],
);

DESCRIPTION

Inline forms are designed to cover all the basic use cases, but they are not as customizable and performant. Currently, they lack the ability to specify custom hooks.

METHODS

is

When ran on a Form::Tiny::Inline class, it produces a new object that you can call ->new on.

$inline_form_builder = Form::Tiny::Inline->is("Filtered", "Strict");