package HTML::FormHandler::Widget::Field::Reset;
# ABSTRACT: reset field rendering widget
use Moose::Role;
use namespace::autoclean;
with 'HTML::FormHandler::Widget::Field::Role::HTMLAttributes';
has 'no_render_label' => ( is => 'ro', isa => 'Bool', default => 1 );
sub render {
my ( $self, $result ) = @_;
$result ||= $self->result;
my $output = 'id . '"';
$output .= ' value="' . $self->html_filter($self->value) . '"';
$output .= $self->_add_html_attributes;
$output .= ' />';
return $self->wrap_field( $result, $output );
}
1;
__END__
=pod
=head1 NAME
HTML::FormHandler::Widget::Field::Reset - reset field rendering widget
=head1 VERSION
version 0.32005
=head1 AUTHOR
FormHandler Contributors - see HTML::FormHandler
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Gerda Shank.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut