Commit | Line | Data |
7adfd53f |
1 | package Reaction::UI::ViewPort::Field::Password; |
2 | |
3 | use Reaction::Class; |
81393881 |
4 | use namespace::clean -except => [ qw(meta) ]; |
7b5e71ad |
5 | use MooseX::Types::Common::String qw(SimpleStr); |
7adfd53f |
6 | |
7b5e71ad |
7 | extends 'Reaction::UI::ViewPort::Field::String'; |
81393881 |
8 | |
9 | has '+value' => (isa => SimpleStr); |
10 | #has '+layout' => (default => 'password'); |
11 | |
12 | __PACKAGE__->meta->make_immutable; |
13 | |
7adfd53f |
14 | |
6ab43711 |
15 | 1; |
7adfd53f |
16 | |
17 | =head1 NAME |
18 | |
19 | Reaction::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 | |
29 | See L<Reaction::Class> for authors. |
30 | |
31 | =head1 LICENSE |
32 | |
33 | See L<Reaction::Class> for the license. |
34 | |
35 | =cut |