=head1 NAME Mojolicious::Plugin::BasicAuth - Basic HTTP Auth Helper =head1 DESCRIPTION L is a helper for basic http authentication. =head1 USAGE use Mojolicious::Lite; plugin 'basic_auth'; get '/' => sub { my $self = shift; return $self->render_text('ok') if $self->basic_auth( realm => sub { return 1 if "@_" eq 'username password' } ); }; app->start; =head1 METHODS L inherits all methods from L and implements the following new ones. =head2 C $plugin->register; Register condition in L application. =head1 SEE ALSO L =head1 DEVELOPMENT L =head1 VERSION 0.06 =head1 CREDITS =over 4 =item Kirill Miazine =back =head1 AUTHOR Glen Hinkle =cut