| Reaction documentation | Contained in the Reaction distribution. |
Reaction::UI::Widget::Field::Mutable::Password - A password input field
See Reaction::UI::Widget::Field::Mutable. Creates a password type input field and never sets the current value as the field's value.
Sets field_type to password and field_value to an empty string.
See Reaction::Class for authors.
See Reaction::Class for the license.
| Reaction documentation | Contained in the Reaction distribution. |
package Reaction::UI::Widget::Field::Mutable::Password; use Reaction::UI::WidgetClass; use namespace::clean -except => [ qw(meta) ]; extends 'Reaction::UI::Widget::Field::Mutable'; around fragment widget { call_next; arg field_type => 'password'; arg field_value => ''; # no sending password to user. really. }; __PACKAGE__->meta->make_immutable; 1; __END__;