aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/Widget/Field/Mutable/Password.pm
blob: 890770e4442af64afe5cf5a4ef0bbe928b93798d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package Reaction::UI::Widget::Field::Mutable::Password;

use Reaction::UI::WidgetClass;

class Password is 'Reaction::UI::Widget::Field::Mutable', which {

  around fragment widget {
    call_next;
    arg field_type => 'password';
    arg field_value => ''; # no sending password to user. really.
  };

};

1;

__END__;

=head1 NAME

Reaction::UI::Widget::Field::Password

=head1 DESCRIPTION

See L<Reaction::UI::Widget::Field>

=head1 AUTHORS

See L<Reaction::Class> for authors.

=head1 LICENSE

See L<Reaction::Class> for the license.

=cut