mailwolt/resources/views/livewire/ui/system/modal/webhook-delete-modal.blade.php

31 lines
1.5 KiB
PHP

<div class="mw-modal-frame">
<div class="mw-modal-head">
<div style="display:flex;align-items:center;gap:7px">
<span style="font-size:10.5px;padding:2px 8px;border-radius:5px;background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.25);color:#f87171;font-weight:600">Löschen</span>
<span style="font-size:12px;color:var(--mw-t3)"> Webhook entfernen</span>
</div>
<button wire:click="$dispatch('closeModal')" class="mw-modal-close">
<svg width="13" height="13" viewBox="0 0 13 13" fill="none"><path d="M1 1l11 11M12 1L1 12" stroke="currentColor" stroke-width="1.4" stroke-linecap="round"/></svg>
</button>
</div>
<div class="mw-modal-body">
<div style="font-size:12.5px;color:var(--mw-t2)">
Webhook <strong style="color:var(--mw-t1)">{{ $webhookName }}</strong> wirklich löschen?
</div>
<div style="font-size:11.5px;color:var(--mw-t4);margin-top:8px">
Diese Aktion kann nicht rückgängig gemacht werden. Das Secret wird unwiderruflich gelöscht.
</div>
</div>
<div class="mw-modal-foot">
<button wire:click="$dispatch('closeModal')" class="mw-btn-cancel">Abbrechen</button>
<button wire:click="delete" class="mw-btn-del">
<svg width="11" height="11" viewBox="0 0 13 13" fill="none"><path d="M2 3h9M5 3V2h3v1M3.5 3l.5 8h5l.5-8" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>
Löschen
</button>
</div>
</div>