rDrama/files/templates/sidebars/SubmitSidebar.html

20 lines
1.1 KiB
HTML
Raw Normal View History

2021-12-04 16:53:10 +00:00
<div class="hidden xl:block xl:col-start-10 xl:col-end-13 flex-shrink-0 my-4 px-4 py-3 rounded-md bg-gray-300/40 shadow-inner">
2021-12-04 16:52:44 +00:00
<h2 class="ml-2 font-bold text-lg font-heading leading-normal mb-2">Options</h2>
2021-11-24 16:48:06 +00:00
<div class="flex flex-col space-y-4 mb-3">
<div class="flex items-center">
2021-12-04 16:51:17 +00:00
<input type="checkbox" id="nsfwCheck" name="over_18">
2021-12-04 16:51:54 +00:00
<label class="leading-4 inline-block pl-2 text-red-600 select-none" for="nsfwCheck">+18</label>
2021-11-24 16:48:06 +00:00
</div>
<div class="flex items-center">
2021-12-04 16:51:17 +00:00
<input type="checkbox" id="privateCheck" name="private">
2021-12-04 16:51:54 +00:00
<label class="leading-4 inline-block pl-2 text-yellow-600 select-none" for="privateCheck">Draft</label>
2021-11-24 16:48:06 +00:00
</div>
2021-12-04 16:36:46 +00:00
{% if v.paid_dues %}
2021-11-24 16:48:06 +00:00
<div class="flex items-center">
2021-12-04 16:51:17 +00:00
<input type="checkbox" id="clubCheck" name="club">
2021-12-04 16:51:54 +00:00
<label class="leading-4 inline-block pl-2 text-gray-500 select-none" for="clubCheck">Country Club Thread</label>
2021-11-24 16:48:06 +00:00
</div>
{% endif %}
</div>
2021-12-04 17:07:33 +00:00
<img src="https://media0.giphy.com/media/3o72FhIuVWddxQHftS/giphy.gif" class="w-full h-58 object-contain p-[3px] bg-white" alt="cozy fireplace log fire"/>
2021-11-24 16:48:06 +00:00
</div>