diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-05-26 21:18:29 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-05-27 01:04:47 +0300 |
commit | cf0b9f036b3e3eb218610e7eeececda1320d9f50 (patch) | |
tree | 39e6d1853aecb3fb77036a941a4c6df12a0ce793 /localwebsite/htdocs | |
parent | c3ed2483ea508141431be74f29f7c209271897cd (diff) |
auth
Diffstat (limited to 'localwebsite/htdocs')
-rw-r--r-- | localwebsite/htdocs/index.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/localwebsite/htdocs/index.php b/localwebsite/htdocs/index.php index 9ce8324..8c9d092 100644 --- a/localwebsite/htdocs/index.php +++ b/localwebsite/htdocs/index.php @@ -28,6 +28,10 @@ $router->add('phpinfo/', 'Misc phpinfo'); $router->add('cams/', 'Misc cams'); $router->add('debug/', 'Misc debug'); +// auth +$router->add('auth/', 'Auth auth'); +$router->add('deauth/', 'Auth deauth'); + $route = routerFind($router); if ($route === false) |