35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Controller;
|
||
|
|
|
||
|
|
use App\Entity\Account;
|
||
|
|
use App\Entity\AccountResetPasswordRequest;
|
||
|
|
use App\Form\RequestPasswordConfirmType;
|
||
|
|
use App\Form\RequestPasswordRequestType;
|
||
|
|
use App\Logger\AppLogger;
|
||
|
|
use App\Service\ResetPassword\Event\ResetPasswordConfirmEvent;
|
||
|
|
use App\Service\ResetPassword\Event\ResetPasswordEvent;
|
||
|
|
use Doctrine\ORM\EntityManagerInterface;
|
||
|
|
use KnpU\OAuth2ClientBundle\Client\ClientRegistry;
|
||
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
||
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||
|
|
use Symfony\Component\HttpFoundation\Request;
|
||
|
|
use Symfony\Component\HttpFoundation\Response;
|
||
|
|
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
|
||
|
|
use Symfony\Component\Routing\Attribute\Route;
|
||
|
|
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
|
||
|
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
||
|
|
|
||
|
|
|
||
|
|
class SignatureController extends AbstractController
|
||
|
|
{
|
||
|
|
|
||
|
|
#[Route('/signature/complete', name: 'app_sign_complete')]
|
||
|
|
public function appSignComplete()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|