24 lines
982 B
HTML
24 lines
982 B
HTML
<div class="modal fade" id="reportPostModal" tabindex="-1">
|
|
<div class="modal-dialog modal-dialog-centered">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">Report post</h5>
|
|
<button type="button" class="close" data-bs-dismiss="modal">
|
|
<span><i class="far fa-times"></i></span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<h6>We're sorry something here is wrong.</h6>
|
|
<small class="form-text text-muted">Please enter a reason for reporting below.</small>
|
|
<input autocomplete="off" maxlength="100" id="reason_post" class="form-control b2 mt-1">
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-link text-muted" data-bs-dismiss="modal">Cancel</button>
|
|
<button type="button" id="reportPostButton" class="btn btn-primary btn-danger" data-bs-dismiss="modal">Report post</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script defer src="{{'js/report_post_modal.js' | asset}}"></script>
|