rDrama/files/templates/delete_post_modal.html

31 lines
1.2 KiB
HTML
Raw Normal View History

2022-02-28 02:06:15 +00:00
<script src="/static/assets/js/delete_post_modal.js?v=240"></script>
2021-10-15 14:08:27 +00:00
2021-12-17 21:01:47 +00:00
<div class="modal fade" id="deletePostModal" tabindex="-1" role="dialog" aria-labelledby="deletePostModalTitle" aria-hidden="true">
2021-10-15 14:08:27 +00:00
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header d-none d-md-flex">
<h5 class="modal-title">Delete post?</h5>
2022-02-01 02:20:25 +00:00
<button class="close" data-bs-dismiss="modal" aria-label="Close">
2021-10-15 14:08:27 +00:00
<span aria-hidden="true"><i class="far fa-times"></i></span>
</button>
</div>
<div class="modal-body text-center">
<div class="py-4">
2022-02-18 21:29:37 +00:00
<i class="fas fa-trash-alt text-muted d-none d-md-block" style="font-size: 3.5rem;"></i>
2021-10-15 14:08:27 +00:00
</div>
<div class="h4 d-md-none">Delete post?</div>
2022-02-14 23:14:59 +00:00
<p class="d-none d-md-block">Your post will be deleted everywhere on {{SITE_NAME}}.</p>
2021-10-15 14:08:27 +00:00
2022-02-14 23:14:59 +00:00
<p class="text-muted d-md-none">Your post will be deleted everywhere on {{SITE_NAME}}.</p>
2022-02-01 02:20:25 +00:00
<button id="deletePostButton" class="btn btn-danger btn-block mt-5" data-bs-dismiss="modal">Delete post</button>
2021-10-15 14:08:27 +00:00
2022-02-01 02:20:25 +00:00
<button class="btn btn-secondary btn-block" data-bs-dismiss="modal">Cancel</button>
2021-10-15 14:08:27 +00:00
</div>
</div>
</div>
</div>