13 lines
217 B
PHP
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';
|
|
|
|
}
|
|
|
|
}
|