From 7bab7c6f5efd1384ddcf22e62d97f1fc8de3b0b8 Mon Sep 17 00:00:00 2001 From: maurine Date: Sun, 12 Apr 2026 22:35:20 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20ajout=20de=20l'attribut=20'novalidate'?= =?UTF-8?q?=20au=20formulaire=20en=20mode=20=C3=A9dition=20pour=20d=C3=A9s?= =?UTF-8?q?activer=20la=20validation=20HTML?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/user/index.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/user/index.html.twig b/templates/user/index.html.twig index 7a44fc0..421ba84 100644 --- a/templates/user/index.html.twig +++ b/templates/user/index.html.twig @@ -10,7 +10,7 @@
{# Affichage du formulaire (seulement en mode édition) #} {% if isEditMode %} - {{ form_start(form, {'attr': {'class': 'contents'}}) }} + {{ form_start(form, {'attr': {'class': 'contents', 'novalidate': 'novalidate'}}) }} {% endif %} {# Gestion des boutons d'action (Modifier / Annuler) et des titres #}