Deploy Ladill Servers / deploy (push) Successful in 25s
Rely on the shared modal component's close control instead of rendering a second one in the embed header. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
783 B
PHP
17 lines
783 B
PHP
@props(['appLabel' => 'Ladill Servers'])
|
|
|
|
<x-modal name="domain-purchase" maxWidth="2xl">
|
|
<div class="flex flex-col" style="height: min(80vh, 720px);">
|
|
<div class="flex shrink-0 items-center justify-between border-b border-slate-100 px-5 py-4 pr-14">
|
|
<div>
|
|
<h2 class="text-base font-semibold text-slate-900">Register a domain</h2>
|
|
<p class="mt-0.5 text-xs text-slate-500">Search and buy without leaving {{ $appLabel }}.</p>
|
|
</div>
|
|
</div>
|
|
<iframe id="ladill-domain-purchase-frame" title="Ladill Domains"
|
|
src="about:blank"
|
|
data-embed-url="{{ ladill_domains_embed_url() }}"
|
|
class="min-h-0 w-full flex-1 border-0 bg-white"></iframe>
|
|
</div>
|
|
</x-modal>
|