reformatted starred and trash pages
This commit is contained in:
30
templates/components/empty_trash_modal.html
Normal file
30
templates/components/empty_trash_modal.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!-- Empty Trash Confirmation Modal -->
|
||||
<div id="emptyTrashModal" class="modal fade" tabindex="-1" aria-labelledby="emptyTrashModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="emptyTrashModalLabel">Empty Trash</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 empty the trash?</h6>
|
||||
<p class="text-muted mb-0">This will permanently delete all items in the trash.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-danger">
|
||||
<i class="fas fa-info-circle me-2"></i>
|
||||
This action cannot be undone. All items 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="confirmEmptyTrash">
|
||||
<i class="fas fa-trash me-1"></i>Empty Trash
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user