The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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