From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use Moose;
our $VERSION = '0.01';
has '+range_start' => ( default => 1 );
has '+range_end' => ( default => 31 );
=head1 NAME
HTML::FormHandler::Field::MonthDay - Select list for a day number 1 to 31
=head1 DESCRIPTION
Generates a select list for integers 1 to 31.
=head1 AUTHORS
Gerda Shank
=head1 COPYRIGHT
This library is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
__PACKAGE__->meta->make_immutable;
1;