rDrama/files/templates/sidebars/SubmitSidebar.html

18 lines
839 B
HTML

<div class="hidden xl:block xl:col-start-10 xl:col-end-13 flex-shrink-0 my-4 p-4 rounded-md bg-gray-300/40 shadow-inner">
<div class="flex flex-col space-y-4 mb-3">
<div class="flex items-center">
<input type="checkbox" id="nsfwCheck" name="over_18">
<label class="leading-4 inline-block pl-2 text-red-600 select-none" for="nsfwCheck">+18</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="privateCheck" name="private">
<label class="leading-4 inline-block pl-2 text-yellow-600 select-none" for="privateCheck">Draft</label>
</div>
{% if v.paid_dues %}
<div class="flex items-center">
<input type="checkbox" id="clubCheck" name="club">
<label class="leading-4 inline-block pl-2 text-gray-500 select-none" for="clubCheck">Country Club Thread</label>
</div>
{% endif %}
</div>
</div>