Files
docupulse/templates/components/permanent_delete_modal.html

30 lines
1.6 KiB
HTML

<!-- Permanent Delete Confirmation Modal -->
<div id="permanentDeleteModal" class="modal fade" tabindex="-1" aria-labelledby="permanentDeleteModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="permanentDeleteModalLabel">Permanently Delete Item</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="d-flex align-items-center gap-3 mb-3">
<i class="fas fa-exclamation-triangle text-danger" style="font-size: 2rem;"></i>
<div>
<h6 class="mb-1">Are you sure you want to permanently delete this item?</h6>
<p class="text-muted mb-0" id="permanentDeleteItemName"></p>
</div>
</div>
<div class="alert alert-danger">
<i class="fas fa-info-circle me-2"></i>
This action cannot be undone. The item will be permanently removed from the system.
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-danger" id="confirmPermanentDelete">
<i class="fas fa-trash me-1"></i>Delete Permanently
</button>
</div>
</div>
</div>
</div>