7 lines
352 B
Twig
7 lines
352 B
Twig
|
|
<form method="post" action="{{ path('app_membre_delete', {'id': membre.id}) }}" onsubmit="return confirm('Êtes-vous sûr de vouloir supprimer ce membre ?');">
|
||
|
|
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ membre.id) }}">
|
||
|
|
<button class="btn btn-danger">
|
||
|
|
<i class="fas fa-trash"></i> Supprimer
|
||
|
|
</button>
|
||
|
|
</form>
|