mailwolt/resources/views/livewire/ui/system/modal/user-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 class="mbx-badge-mute">Benutzer</span>
<span style="font-size:12px;color:var(--mw-t3)"> Löschen</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="padding:12px 14px;border-radius:8px;border:1px solid rgba(239,68,68,.25);background:rgba(239,68,68,.06)">
<div style="font-size:12.5px;font-weight:500;color:var(--mw-t1);font-family:monospace">{{ $userName }}</div>
<div style="font-size:11px;color:rgba(252,165,165,.8);margin-top:4px">
Dieser Benutzer wird dauerhaft gelöscht und kann sich nicht mehr anmelden.
</div>
</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="12" height="12" 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>