special exists event, force_events
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Field / Mutable / Password.pm
CommitLineData
2f670e13 1package Reaction::UI::Widget::Field::Mutable::Password;
8f19d042 2
3use Reaction::UI::WidgetClass;
4
2f670e13 5class Password is 'Reaction::UI::Widget::Field::Mutable', which {
8f19d042 6
664d660c 7 around fragment widget {
8 call_next;
9 arg field_type => 'password';
9ba84ace 10 arg field_value => ''; # no sending password to user. really.
664d660c 11 };
12
8f19d042 13};
14
151;
16
6ab43711 17__END__;
8f19d042 18
5a1a893e 19=head1 NAME
8f19d042 20
5a1a893e 21Reaction::UI::Widget::Field::Password
8f19d042 22
5a1a893e 23=head1 DESCRIPTION
8f19d042 24
5a1a893e 25See L<Reaction::UI::Widget::Field>
8f19d042 26
5a1a893e 27=head1 AUTHORS
8f19d042 28
5a1a893e 29See L<Reaction::Class> for authors.
8f19d042 30
5a1a893e 31=head1 LICENSE
32
33See L<Reaction::Class> for the license.
8f19d042 34
35=cut