hegresphere/templates/user_app/_delete_form.html.twig

5 lines
357 B
Twig
Raw Normal View History

2024-11-21 17:04:56 +01:00
<form method="post" action="{{ path('app_user_app_delete', {'id': user_app.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ user_app.id) }}">
2024-11-28 17:15:33 +01:00
<button class="bg-red-600 hover:bg-teal-600 text-white py-2 px-4 rounded-full">Supprimer</button>
2024-11-21 17:04:56 +01:00
</form>