forked from rDrama/rDrama
1
0
Fork 0
retarD/files/templates/CHRISTMAS/delete_post_modal.html

27 lines
1.2 KiB
HTML
Raw Normal View History

2021-12-24 23:02:34 +00:00
<script src="/assets/CHRISTMAS/js/delete_post_modal.js?a=1"></script>
2021-12-14 22:48:37 +00:00
2021-12-22 03:00:36 +00:00
<div class="modal fade" id="deletePostModal" tabindex="-1" role="dialog" aria-labelledby="deletePostModalTitle" aria-hidden="true">
2021-12-22 03:04:20 +00:00
<div class="modal-dialog modal-dialog-centered" role="document">
2021-12-22 03:00:11 +00:00
<div class="modal-content mx-auto max-w-xl bg-gray-100 dark:bg-gray-700 rounded-md shadow-lg">
2021-12-22 02:47:07 +00:00
<div class="modal-header">
2021-12-22 03:07:05 +00:00
<h5 class="font-bold text-xl leading-normal">Delete post?</h5>
2021-12-14 22:48:37 +00:00
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="far fa-times"></i></span>
</button>
</div>
<div class="modal-body text-center">
2021-12-22 03:05:35 +00:00
<div class="mb-3">
2021-12-22 03:06:13 +00:00
<i class="fad fa-trash-alt fa-lg text-red-600"></i>
2021-12-14 22:48:37 +00:00
</div>
2021-12-22 03:01:26 +00:00
<p>
2021-12-22 02:47:07 +00:00
Your post will be removed everywhere on {{'SITE_NAME' | app_config}}. This action can be undone.
</p>
2021-12-14 22:48:37 +00:00
</div>
2021-12-22 03:01:26 +00:00
<div class="flex justify-end space-x-2 border-t border-gray-300 dark:border-gray-800 p-4">
2021-12-22 02:47:07 +00:00
<button type="button" class="px-4 py-2 text-sm font-bold text-gray-500 hover:text-gray-400" data-bs-dismiss="modal">Cancel</button>
<button type="button" id="deletePostButton" class="btn btn-red">Delete post</button>
2021-12-14 22:48:37 +00:00
</div>
</div>
</div>
</div>