r15374@deathmachine (orig r423): edenc | 2007-12-17 13:43:38 -0500
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Field / Password.pm
1 package Reaction::UI::Widget::Field::Password;
2
3 use Reaction::UI::WidgetClass;
4
5 class Password is 'Reaction::UI::Widget::Field', which {
6
7   around fragment widget {
8     call_next;
9     arg field_type => 'password';
10   };
11
12 };
13
14 1;
15
16 __END__;
17
18 =head1 NAME
19
20 Reaction::UI::Widget::Field::Password
21
22 =head1 DESCRIPTION
23
24 See L<Reaction::UI::Widget::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