Delete modals.html

This commit is contained in:
2025-11-09 19:05:10 -08:00
parent 20ae40eb69
commit dae7d2d090

View File

@@ -1,48 +0,0 @@
<div id="suneModal" class="hidden fixed inset-0 z-50">
<div class="absolute inset-0 bg-black/30"></div>
<div class="absolute inset-x-0 top-12 mx-auto w-full max-w-md px-4">
<div class="rounded-2xl bg-white shadow-xl border border-gray-200 overflow-hidden">
<div class="px-4 py-3 border-b text-sm font-semibold flex items-center gap-2">
<input
id="suneURL"
type="text"
placeholder=""
class="flex-1 min-w-0 h-10 rounded-xl border-0 bg-gray-50 px-3 text-gray-400 placeholder:text-gray-200 focus:outline-none focus:ring-2 focus:ring-gray-200 focus:bg-white text-xs font-mono focus:text-black"
/>
<button id="syncSune" class="p-1.5 rounded hover:bg-gray-100" aria-label="Refresh">
<i data-lucide="refresh-cw" class="h-5 w-5"></i>
</button>
</div>
<form id="settingsForm" class="text-sm">
<div class="border-b flex text-xs font-medium">
<button
type="button"
id="tabModel"
class="flex-1 py-2 px-3 text-center border-b-2 border-black"
>Model & Sampling</button>
<button
type="button"
id="tabPrompt"
class="flex-1 py-2 px-3 text-center border-b-2 border-transparent hover:border-gray-300"
>System Prompt</button>
<button
type="button"
id="tabScript"
class="flex-1 py-2 px-3 text-center border-b-2 border-transparent hover:border-gray-300"
>HTML</button>
</div>
<!-- (unchanged content of settings and account modals omitted for brevity, but should match original exactly) -->
<!-- Keep the rest of this file identical to your previous src/partials/modals.html content -->
</form>
</div>
</div>
</div>
<div id="accountSettingsModal" class="hidden fixed inset-0 z-50">
<div class="absolute inset-0 bg-black/30"></div>
<div class="absolute inset-x-0 top-16 mx-auto w-full max-w-md px-4">
<div class="rounded-2xl bg-white shadow-xl border border-gray-200 overflow-hidden">
<!-- (unchanged account settings modal; same as before) -->
</div>
</div>
</div>