feat: add frontend

This commit is contained in:
Maël Gangloff
2024-07-22 14:45:21 +02:00
parent 1642767993
commit 3d7a6fbcfd
21 changed files with 5818 additions and 44 deletions

View File

@@ -14,6 +14,12 @@ use Symfony\Component\Security\Http\Attribute\IsGranted;
class HomeController extends AbstractController
{
#[Route(path: "/", name: "index")]
public function index(): Response
{
return $this->render('base.html.twig');
}
#[Route(path: "/login/oauth", name: "oauth_connect")]
public function connectAction(ClientRegistry $clientRegistry): Response
{