Skip to content

luisdesig/cakephp3-authenticate

Repository files navigation

CakePHP Application Skeleton

Permitir iniciar con una version de cakephp con el modulo authenticate basico preconfigurado

El campo username fue cambiado por email para ingresar al sistema http://localhost/login Usuario : [email protected] Password: admin

Para salir del sistema para ingresar al sistema http://localhost/logout

para agregar nuevos usuarios agregar la accion add en el metodo beforefilter en UsersController

public function beforeFilter(Event $event)
    {
        parent::beforeFilter($event);
        $this->Auth->allow(['add','logout']);
    }

para agregar nuevo usuario http://localhost/users/add

About

Repositorio para iniciar cakephp3 con authenticate preconfigurado

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published