do not include .git directory
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Password.pm
CommitLineData
7adfd53f 1package Reaction::UI::ViewPort::Field::Password;
2
3use Reaction::Class;
81393881 4use namespace::clean -except => [ qw(meta) ];
7b5e71ad 5use MooseX::Types::Common::String qw(SimpleStr);
7adfd53f 6
7b5e71ad 7extends 'Reaction::UI::ViewPort::Field::String';
81393881 8
9has '+value' => (isa => SimpleStr);
10#has '+layout' => (default => 'password');
11
12__PACKAGE__->meta->make_immutable;
13
7adfd53f 14
6ab43711 151;
7adfd53f 16
17=head1 NAME
18
19Reaction::UI::ViewPort::Field::Password
20
21=head1 DESCRIPTION
22
23=head1 SEE ALSO
24
25=head2 L<Reaction::UI::ViewPort::Field>
26
27=head1 AUTHORS
28
29See L<Reaction::Class> for authors.
30
31=head1 LICENSE
32
33See L<Reaction::Class> for the license.
34
35=cut