####
form( { -method => 'POST' },
hidden( -name => 'mode', -value => 'confirm' ),
table( { -border => 0 },
Tr( td( table( { -width => '100%' },
Tr( th( [ 'ColA','ColB','ColC' ] ),
td( [ 'Value A','Value B','Value C' ] )
td( [ submit, reset, ' ' ] ))
)))
)
)
####
print form( { -method => 'POST' },
hidden( -name => 'mode', -value => 'confirm' ),
table( { -border => 0 },
Tr( td( table( { -width => '100%' },
Tr( th( [ 'ColA','ColB','ColC' ] ),
td( [ 'Value A','Value B','Value C' ] )
td( [ submit, reset, ' ' ] ))
)))
)
)