HegreEtConfort/templates/user/_delete_form.html.twig

5 lines
283 B
Twig
Raw Permalink Normal View History

2024-12-20 10:07:22 +01:00
<form method="post" action="{{ path('app_user_delete', {'id': user.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ user.id) }}">
<button class="btn">Delete</button>
</form>