fix: absence de rechargement de la page apres connexion

This commit is contained in:
Ploush 2026-05-10 10:16:05 +02:00
parent 8f9e0aa7ed
commit b620050763
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@
</div>
{% endif %}
<form action="{{ path('app_login') }}" method="post" >
<form action="{{ path('app_login') }}" method="post" data-turbo="false">
<div class="form-field">
<label for="username">Pseudo</label>

View file

@ -3,7 +3,7 @@
{% block title %}Log in!{% endblock %}
{% block body %}
<form method="post">
<form method="post" data-turbo="false">
{% if error %}
<div class="alert alert-danger">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
{% endif %}