From 4a54317a7e444df8f719a1f327d37e2a70de279d Mon Sep 17 00:00:00 2001 From: tischsoic Date: Fri, 20 Mar 2026 14:49:08 +0100 Subject: [PATCH 1/3] fix: use DS classes for login submit button Updates the login form submit button to use DS button classes while preserving the existing form markup and submission behavior. --- src/bundle/Core/Resources/views/Security/login.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundle/Core/Resources/views/Security/login.html.twig b/src/bundle/Core/Resources/views/Security/login.html.twig index 4790763f51..6419613b77 100644 --- a/src/bundle/Core/Resources/views/Security/login.html.twig +++ b/src/bundle/Core/Resources/views/Security/login.html.twig @@ -29,7 +29,7 @@ is redirected to on success (more details below) #} - + {% endblock %} From 55a6d259be53508e1b3c9784f35a23a5559b397d Mon Sep 17 00:00:00 2001 From: tischsoic Date: Thu, 14 May 2026 14:09:10 +0200 Subject: [PATCH 2/3] fix: use Twig button tags in core templates --- src/bundle/Core/Resources/views/Security/login.html.twig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/bundle/Core/Resources/views/Security/login.html.twig b/src/bundle/Core/Resources/views/Security/login.html.twig index 6419613b77..786be57489 100644 --- a/src/bundle/Core/Resources/views/Security/login.html.twig +++ b/src/bundle/Core/Resources/views/Security/login.html.twig @@ -29,7 +29,12 @@ is redirected to on success (more details below) #} - + + {{ 'Login'|trans }} + {% endblock %} From 8d2a7b6b912d629b42e8128f93d73ee65ffaf6a9 Mon Sep 17 00:00:00 2001 From: tischsoic Date: Thu, 14 May 2026 15:56:53 +0200 Subject: [PATCH 3/3] style: fix Twig button tag indentation in core templates --- .../Core/Resources/views/Security/login.html.twig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bundle/Core/Resources/views/Security/login.html.twig b/src/bundle/Core/Resources/views/Security/login.html.twig index 786be57489..a77dc7c9bb 100644 --- a/src/bundle/Core/Resources/views/Security/login.html.twig +++ b/src/bundle/Core/Resources/views/Security/login.html.twig @@ -30,11 +30,11 @@ #} - {{ 'Login'|trans }} - + html_type="submit" + type="primary" + > + {{ 'Login'|trans }} + {% endblock %}