44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<div class="mw-modal-frame">
|
|
|
|
<div class="mw-modal-head">
|
|
<div class="mw-modal-title-wrap">
|
|
<h2 class="mw-modal-title">Postfach löschen</h2>
|
|
<span class="mw-modal-sub">{{ $email }}</span>
|
|
</div>
|
|
<button wire:click="$dispatch('closeModal')" class="mw-modal-close">
|
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="none"><path d="M2 2l10 10M12 2L2 12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/></svg>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="mw-modal-body">
|
|
|
|
<div class="mw-modal-danger">
|
|
<b>Achtung:</b> Das Postfach wird gelöscht.
|
|
@if(!$keep_server_mail)
|
|
Alle E-Mails werden <u>entfernt</u>.
|
|
@else
|
|
E-Mails bleiben am Server erhalten.
|
|
@endif
|
|
</div>
|
|
|
|
<label class="mw-modal-check">
|
|
<input type="checkbox" wire:model="keep_server_mail">
|
|
<span class="mw-modal-check-label">E-Mails am Server belassen</span>
|
|
</label>
|
|
|
|
<label class="mw-modal-check">
|
|
<input type="checkbox" wire:model="export_zip">
|
|
<span class="mw-modal-check-label">ZIP-Export der bisherigen E-Mails erstellen</span>
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="mw-modal-foot">
|
|
<button type="button" wire:click="$dispatch('closeModal')" class="mw-btn-cancel">Abbrechen</button>
|
|
<button type="button" wire:click="$dispatch('mailbox:delete')" class="mw-btn-del">
|
|
Endgültig löschen
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|