forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/modals/report_post.html

24 lines
957 B
HTML
Raw Normal View History

<div class="modal" id="m-reportPost" 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">
<h5 class="modal-title">Report post</h5>
<button type="button" class="close" 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>
<input autocomplete="off" maxlength="100" id="reason_post" class="allow-emojis form-control b2 mt-1">
2022-09-12 09:48:01 +00:00
</div>
<div class="modal-footer">
<button type="button" class="btn btn-link text-muted" dismiss_modal>Cancel</button>
<button type="button" id="reportPostButton" class="btn btn-primary btn-danger" dismiss_modal>Report post</button>
2022-05-04 23:09:46 +00:00
</div>
</div>
</div>
</div>
<script defer src="{{'js/report_post_modal.js' | asset}}"></script>