rDrama/files/templates/CHRISTMAS/modals/ModalReportComment.html

38 lines
2.1 KiB
HTML

<div class="modal fade" id="reportCommentModal" tabindex="-1" role="dialog" aria-labelledby="reportCommentModalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered mx-auto max-w-xl" role="document">
<div class="modal-content mx-auto max-w-xl bg-gray-100 rounded-md shadow-lg">
<div class="modal-header">
<h5 class="font-bold text-xl text-black font-heading leading-normal">Report <span id="comment-author"></span>'s comment</h5>
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="far fa-times"></i></span>
</button>
</div>
<div id="reportCommentFormBefore">
<div class="modal-body">
<div class="font-bold text-lg leading-normal">We're sorry something here is wrong.</div>
<small class="text-gray-500">Please enter a reason for reporting below.</small>
<input maxlength="100" id="reason-comment" class="mt-3 form-input" placeholder="e.g. this comment violates community standards">
</div>
<div class="flex justify-end space-x-2 border-t border-gray-300 p-4">
<button type="button" class="px-4 py-2 text-sm font-bold text-gray-500 hover:text-gray-700" data-bs-dismiss="modal">
Cancel
</button>
<button type="button" id="reportCommentButton" class="block px-4 py-2 bg-gradient-to-t from-red-700 to-red-600 hover:from-red-600 hover:to-red-700 active:shadow-inner border border-red-900 rounded-md text-shadow-t shadow-inset-t-white-10 text-sm font-bold text-gray-100 focus:text-gray-400 focus:outline-none">
Report comment
</button>
</div>
</div>
<div class="hidden" id="reportCommentFormAfter">
<div class="modal-body">
<div class="font-bold text-lg leading-normal">Thank you for reporting this comment!</div>
<small class="text-gray-500">By the power of the mop, our internet janitors will take it from here.</small>
</div>
<div class="flex justify-end space-x-2 border-t border-gray-400 p-4">
<button type="button" class="px-4 py-2 text-sm font-bold text-gray-500 hover:text-gray-400" data-bs-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
</div>