package HTML::FormFu::Element::Reset; use strict; use base 'HTML::FormFu::Element::Button'; use Class::C3; sub new { my $self = shift->next::method(@_); $self->field_type('reset'); return $self; } 1; __END__ =head1 NAME HTML::FormFu::Element::Reset - Reset button form field =head1 SYNOPSIS $e = $form->element( Reset => 'foo' ); =head1 DESCRIPTION Reset button form field. =head1 METHODS =head1 SEE ALSO Is a sub-class of, and inherits methods from L, L, L, L L =head1 AUTHOR Carl Franks, C =head1 LICENSE This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.