2023-10-02 06:04:05 +00:00
|
|
|
<div class="modal fade" id="reportPostModal" tabindex="-1">
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="modal-dialog modal-dialog-centered">
|
2022-05-04 23:09:46 +00:00
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
2024-02-14 12:49:44 +00:00
|
|
|
<h5 class="modal-title">Report Post</h5>
|
2023-10-02 06:04:05 +00:00
|
|
|
<button type="button" class="close" data-bs-dismiss="modal">
|
2023-08-23 00:52:50 +00:00
|
|
|
<span><i class="fas fa-times"></i></span>
|
2022-05-04 23:09:46 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
2022-09-12 09:48:01 +00:00
|
|
|
<div class="modal-body">
|
2022-10-29 00:55:49 +00:00
|
|
|
<h6>We're sorry something here is wrong.</h6>
|
2022-09-12 09:48:01 +00:00
|
|
|
<small class="form-text text-muted">Please enter a reason for reporting below.</small>
|
2023-07-25 18:06:26 +00:00
|
|
|
<input autocomplete="off" maxlength="100" id="reason_post" class="allow-emojis form-control b2 mt-1">
|
2023-10-06 14:32:40 +00:00
|
|
|
{{macros.emoji_btn('reason_post', 'reportPostModal')}}
|
2024-02-01 00:32:30 +00:00
|
|
|
{% if SITE_NAME == 'WPD' %}
|
|
|
|
<small class="form-text text-muted mt-3">
|
|
|
|
If you are reporting a repost, include a link to the original post. Reposts are allowed after 60 days unless they are in the famous videos list.
|
|
|
|
</small>
|
|
|
|
{% endif %}
|
2022-09-12 09:48:01 +00:00
|
|
|
</div>
|
2024-02-01 00:32:30 +00:00
|
|
|
|
2022-09-12 09:48:01 +00:00
|
|
|
<div class="modal-footer">
|
2023-10-02 06:04:05 +00:00
|
|
|
<button type="button" class="btn btn-link text-muted" data-bs-dismiss="modal">Cancel</button>
|
2024-02-14 12:49:44 +00:00
|
|
|
<button type="button" id="reportPostButton" class="btn btn-primary btn-danger" data-bs-dismiss="modal">Report Post</button>
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-09-24 07:04:06 +00:00
|
|
|
<script defer src="{{'js/report_post_modal.js' | asset}}"></script>
|