ATS/templates/includes/delete_modal.html
2026-02-01 13:38:06 +03:00

22 lines
894 B
HTML

{% load i18n %}
<!-- Delete Confirmation Modal -->
<div class="fixed inset-0 bg-black/50 backdrop-blur-sm z-50 hidden flex items-center justify-center p-4" id="meetingModal" tabindex="-1" aria-labelledby="meetingModalLabel" aria-hidden="true">
<div class="bg-white rounded-xl shadow-xl max-w-md w-full">
<div class="flex items-center justify-between p-4 border-b border-gray-200">
<h5 class="text-lg font-bold text-gray-900" id="meetingModalLabel">
</h5>
<button type="button" class="text-gray-400 hover:text-gray-600 transition" aria-label="Close" onclick="document.getElementById('meetingModal').classList.add('hidden')">
<i data-lucide="x" class="w-5 h-5"></i>
</button>
</div>
<div id="meetingModalBody" class="p-4">
</div>
</div>
</div>
<script>
lucide.createIcons();
</script>