The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Jifty::Plugin::Login

SYNOPSIS

 in etc/config.yml
    Plugins:
      - Login: {}

 in your application Model/User.pm
   use strict;
   package YourApp::Model::User;
   use base qw/Jifty::Plugin::Login::Model::User/;
   1;

 in your application, you can use
  http://localhost:8888/login
                       /logout
                       /signup
                       /chgpasswd
                       /passwordreminder

DESCRIPTION