first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Symfony\Component\Routing\Attribute\Route;
|
||||
|
||||
#[Route('/profile')]
|
||||
final class ProfileController extends AbstractController
|
||||
{
|
||||
#[Route('/edit', name: 'profile_edit')]
|
||||
public function edit(): Response
|
||||
{
|
||||
return $this->render('edit/sign-in.html.twig', []);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user