package Oak::Web::HTML::Form; use strict; use Error qw(:try); use base qw(Oak::Web::Container); =head1 NAME Oak::Web::HTML::Form - A form for submission =head1 HIERARCHY L L L L L L =head1 PROPERTIES The Oak::Web::HTML::Form object has the following properties: =over =item action Where to points the form to =item method POST or GET =back =cut sub valid_html_attributes { my $self = shift; ( $self->core_attributes, $self->i18n_attributes, $self->events_attributes, "action", "method", "enctype", "accept", "name", "onsubmit", "onreset", "accept-charset" ); } sub start_container { my $self = shift; print "print_html_attributes; print ">\n"; print "{__owner__}->get('name')."\">\n"; } sub end_container { print "\n"; } 1; __END__ =head1 BUGS Too early to determine. :) =head1 COPYRIGHT Copyright (c) 2001 Daniel Ruoso All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.