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


HTML-FormWizard documentation  | view source Contained in the HTML-FormWizard distribution.

Index


NAME

Top

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

SYNOPSIS

Top

		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

Top

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


HTML-FormWizard documentation  | view source Contained in the HTML-FormWizard distribution.