rDrama/files/templates/report_post_modal.html

37 lines
1.5 KiB
HTML
Raw Normal View History

2021-10-10 05:28:35 +00:00
<script src="/assets/js/report_post_modal.js?v=53"></script>
2021-09-25 21:13:52 +00:00
2021-07-21 01:12:26 +00:00
<div class="modal fade" id="reportPostModal" tabindex="-1" role="dialog" aria-labelledby="reportPostModalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
2021-10-01 03:37:33 +00:00
<h5 class="modal-title">Report post</h5>
2021-09-26 09:04:49 +00:00
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
2021-07-21 01:12:26 +00:00
<span aria-hidden="true"><i class="far fa-times"></i></span>
</button>
</div>
2021-09-28 03:44:31 +00:00
<div class="" id="reportPostFormBefore">
2021-07-21 01:12:26 +00:00
<form id="report-post-form" method="post">
<div class="modal-body">
<div class="h6">We're sorry something here is wrong.</div>
2021-07-24 18:40:34 +00:00
<small class="form-text text-muted">Please enter a reason for reporting below.</small>
2021-07-24 18:23:56 +00:00
<pre></pre>
2021-07-24 18:32:20 +00:00
<input maxlength="100" id="reason" class="form-control"/>
2021-07-24 18:23:56 +00:00
</div>
2021-07-21 01:12:26 +00:00
<div class="modal-footer">
2021-09-26 09:04:49 +00:00
<button type="button" class="btn btn-link text-muted" data-bs-dismiss="modal">Cancel</button>
2021-07-24 18:17:27 +00:00
<button type="button" id="reportPostButton" class="btn btn-danger">Report post</button>
2021-07-21 01:12:26 +00:00
</div>
</form>
</div>
2021-09-28 03:44:31 +00:00
<div class="d-none" id="reportPostFormAfter">
2021-07-21 01:12:26 +00:00
<div class="modal-body">
<div class="h6">Thank you for reporting this post!</div>
<small class="form-text text-muted">We'll take it from here.</small>
</div>
<div class="modal-footer">
2021-09-26 09:04:49 +00:00
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>
2021-07-21 01:12:26 +00:00
</div>
</div>
</div>
</div>
2021-07-24 23:30:02 +00:00
</div>