Provided by: libmojolicious-plugin-basicauth-perl_0.07-1_all bug

NAME

       Mojolicious::Plugin::BasicAuth - Basic HTTP Auth Helper

DESCRIPTION

       Mojolicous::Plugin::BasicAuth is a helper for basic http authentication.

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;

METHODS

       Mojolicious::Plugin::BasicAuth inherits all methods from Mojolicious::Plugin and
       implements the following new ones.

   "register"
           $plugin->register;

       Register condition in Mojolicious application.

SEE ALSO

       Mojolicious

DEVELOPMENT

       http://github.com/tempire/mojolicious-plugin-basicauth
       <http://github.com/tempire/mojolicious-plugin-basicauth>

VERSION

       0.07

CREDITS

       Kirill Miazine
       reneeb

AUTHOR

       Glen Hinkle tempire@cpan.org