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

NAME

                HTML::FormWizard::FileTemplate - Template para o Modulo
                        HTML::FormWizard

SYNOPSIS

                use HTML::FormWizard::FileTemplate();
                use HTML::FormWizard();

                my $template=HTML::FormWizard::FileTemplate->new(
                        "formxpto", #Template
                        "./", #base_dir
                        "red", #descriptions background
                        "white", #fields background
                        "green" #error messages background
                );
                
                my $form = HTML::FormWizard->new(
                        -title  => 'Form Title',
                        -fields => [ ],
                        -template => $template
                ); #see perldoc HTML::FormWizard for details.
                
                if (my $data=$form->run()) {
                        #do things with data.!
                }

DESCRIPTION

        This is a template used to print forms with HTML header and footers.