From af61edb01e6b03bcc4dee056459c1dcc24b9fd06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20=C5=A0pa=C4=8Dek?= Date: Wed, 15 May 2024 03:01:46 +0200 Subject: [PATCH] Auth fix #5 --- templates/login.html.twig | 6 ------ templates/register.html.twig | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/templates/login.html.twig b/templates/login.html.twig index bc1b4cf..bc2dac7 100644 --- a/templates/login.html.twig +++ b/templates/login.html.twig @@ -27,12 +27,6 @@ {% if error %}

{{ error.messageKey|trans(error.messageData, 'security') }}

{% endif %} - - {% endblock %} diff --git a/templates/register.html.twig b/templates/register.html.twig index 7ca52b2..291dc89 100644 --- a/templates/register.html.twig +++ b/templates/register.html.twig @@ -8,7 +8,7 @@ {{ parent() }}
- {{ form_start(form, {'action': path('create'), 'method': 'POST'}) }} + {{ form_start(form, {'action': path('users_create'), 'method': 'POST'}) }} {{ form_widget(form) }}