homepage
This commit is contained in:
13
src/Controller/GuiController.php
Normal file
13
src/Controller/GuiController.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
namespace App\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Symfony\Component\Routing\Annotation\Route;
|
||||
|
||||
class GuiController extends AbstractController {
|
||||
#[Route('/')]
|
||||
public function index(): Response {
|
||||
return $this->render('/index.html.twig');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user