updated docs

This commit is contained in:
2022-11-17 20:25:09 -08:00
parent e54e634017
commit 4d3c87b01a
3 changed files with 48 additions and 6 deletions

View File

@@ -36,16 +36,37 @@ to the firewalls section of config/packages/security.yaml
### Modify the controller
```php
$error = $authenticationUtils->getLastAuthenticationError();
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
class LoginController extends AbstractController
{
#[Route('/login', name: 'app_login')]
public function index(AuthenticationUtils $authenticationUtils): Response
{
$error = $authenticationUtils->getLastAuthenticationError();
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('login/index.html.twig', [
'last_username' => $lastUsername,
'error' => $error,
]);
}
}
```
### Modify the template
```php
{% extends '@nytwig/master.html.twig' %}
{% block title %}Hello LoginController!{% endblock %}
{% block content %}
{% if error %}
<div>{{ error.messageKey|trans(error.messageData, 'security') }}</div>