typo in matching passwords
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Password.pm
1 package Reaction::UI::ViewPort::Field::Password;
2
3 use Reaction::Class;
4
5 use Reaction::Types::Core qw(SimpleStr);
6
7 class Password is 'Reaction::UI::ViewPort::Field::String', which {
8
9   has '+value' => (isa => SimpleStr);
10   #has '+layout' => (default => 'password');
11
12 };
13
14 1;
15
16 =head1 NAME
17
18 Reaction::UI::ViewPort::Field::Password
19
20 =head1 DESCRIPTION
21
22 =head1 SEE ALSO
23
24 =head2 L<Reaction::UI::ViewPort::Field>
25
26 =head1 AUTHORS
27
28 See L<Reaction::Class> for authors.
29
30 =head1 LICENSE
31
32 See L<Reaction::Class> for the license.
33
34 =cut