nimuli/resources/views/livewire/modals/delete-domain.blade.php

21 lines
1.0 KiB
PHP

<div class="p-6">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-full bg-red/10 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-red" fill="none" viewBox="0 0 20 20" stroke="currentColor" stroke-width="1.5">
<circle cx="10" cy="10" r="8"/><path stroke-linecap="round" stroke-linejoin="round" d="M10 6v4m0 3h.01"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<h3 class="text-base font-semibold text-t1">Delete Domain</h3>
<p class="mt-1.5 text-sm text-t2">
Remove <span class="text-t1 font-medium font-mono">{{ $hostname }}</span>? Links using this domain will stop working.
</p>
</div>
</div>
<div class="flex gap-3 mt-6 justify-end">
<x-ui.button wire:click="closeModal" variant="ghost" label="Cancel" />
<x-ui.button wire:click="delete" action="delete" variant="danger" label="Remove Domain" loading-label="Removing..." />
</div>
</div>