# --
# start html page
# --
sub Run {
my ( $Self, %Param ) = @_;
my $Output = $Self->{LayoutObject}->CustomerHeader();
$Output .= $Self->{LayoutObject}->CustomerNavigationBar();
$Output .= $Self->{LayoutObject}->Output(
TemplateFile => 'Contact',
Data => \%Param,
);
# build footer
$Output .= $Self->{LayoutObject}->CustomerFooter();
return $Output;
}
1;