loginapp/controllers/app.php
2023-10-30 01:29:40 +01:00

13 lines
217 B
PHP

<?php
//The keyserver is installed in same domain, create a cookie with a name, and the user can use this cookie how its want.
class AppController {
public function app() {
return 'login';
}
}