mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-22 18:45:59 +02:00
Some design improvements and added settings page
This commit is contained in:
parent
bf51671e4e
commit
ea754362f8
5 changed files with 464 additions and 33 deletions
16
cp/app/Controllers/SystemController.php
Normal file
16
cp/app/Controllers/SystemController.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace App\Controllers;
|
||||
|
||||
use App\Models\Tickets;
|
||||
use Psr\Http\Message\ResponseInterface as Response;
|
||||
use Psr\Http\Message\ServerRequestInterface as Request;
|
||||
use Psr\Container\ContainerInterface;
|
||||
|
||||
class SystemController extends Controller
|
||||
{
|
||||
public function settings(Request $request, Response $response)
|
||||
{
|
||||
return view($response,'admin/system/settings.twig');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue