aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Field/Password.pm
blob: 4d24ad6e6c00a076568dbd150107804941f31b6f (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::ViewPort::Field::Password;

use Reaction::Class;
use namespace::clean -except => [ qw(meta) ];
use MooseX::Types::Common::String qw(SimpleStr);

extends 'Reaction::UI::ViewPort::Field::String';

has '+value' => (isa => SimpleStr);
#has '+layout' => (default => 'password');

__PACKAGE__->meta->make_immutable;


1;

=head1 NAME

Reaction::UI::ViewPort::Field::Password

=head1 DESCRIPTION

=head1 SEE ALSO

=head2 L<Reaction::UI::ViewPort::Field>

=head1 AUTHORS

See L<Reaction::Class> for authors.

=head1 LICENSE

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

=cut