revert r620
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Field / Mutable / Password.pm
1 package Reaction::UI::Widget::Field::Mutable::Password;
2
3 use Reaction::UI::WidgetClass;
4
5 class Password is 'Reaction::UI::Widget::Field::Mutable', which {
6
7   around fragment widget {
8     call_next;
9     arg field_type => 'password';
10     arg field_value => ''; # no sending password to user. really.
11   };
12
13 };
14
15 1;
16
17 __END__;
18
19 =head1 NAME
20
21 Reaction::UI::Widget::Field::Password
22
23 =head1 DESCRIPTION
24
25 See L<Reaction::UI::Widget::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