remotes/1693045480750635534/spooky-22
kek7198 2021-12-06 13:18:44 -06:00
parent 1f63d2e2ec
commit 97bac4a167
1 changed files with 18 additions and 1 deletions

View File

@ -13,7 +13,24 @@
<form id="profile-settings" action="/settings/css" method="post">
<input type="hidden" name="formkey" value="{{v.formkey}}">
<div class="rounded border border-gray-300 border-dashed bg-white w-full">
<textarea class="p-2 shadow-inner w-full" placeholder="i.e. .custom-class {...}" rows="36" name="css" form="profile-settings" maxlength="4000">{% if v.css %}{{v.csslazy}}{% endif %}</textarea>
<textarea class="p-2 shadow-inner w-full" placeholder="i.e. .custom-class {...}" rows="24" name="css" form="profile-settings" maxlength="4000">{% if v.css %}{{v.csslazy}}{% endif %}</textarea>
</div>
<small class="block mt-2 text-gray-400">Limit of 4000 characters</small>
<div class="mt-4">
<input id="submit-btn" class="ml-auto btn btn-gray" type="submit" value="Save">
</div>
</form>
</div>
</div>
<!-- Custom profile CSS -->
<div class="rounded-lg divide-y divide-gray-300 bg-gray-100 border border-gray-300 shadow-inset-t-white-10">
<div class="px-4 py-4">
<h2 class="label text-black">Custom profile CSS</h2>
<form id="profile-settings" action="/settings/profilecss" method="post">
<input type="hidden" name="formkey" value="{{v.formkey}}">
<div class="rounded border border-gray-300 border-dashed bg-white w-full">
<textarea class="p-2 shadow-inner w-full" id="bio-text" aria-label="With textarea" placeholder="i.e. .custom-avatar {...}" rows="24" name="profilecss" form="profile-settings" maxlength="4000">{% if v.profilecss %}{{v.profilecss}}{% endif %}</textarea>
</div>
<small class="block mt-2 text-gray-400">Limit of 4000 characters</small>
<div class="mt-4">