McDoPlus/templates/user_admin/_delete_form.html.twig
2023-11-21 22:02:38 +01:00

4 lines
289 B
Twig

<form method="post" action="{{ path('app_user_admin_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>