mailwolt/resources/views/livewire/ui/system/modal/backup-restore-confirm-moda...

36 lines
1.9 KiB
PHP

<div class="mw-modal-frame">
<div class="mw-modal-head">
<div class="mw-modal-title-wrap">
<h2 class="mw-modal-title">Backup wiederherstellen</h2>
<span class="mw-modal-sub">{{ $startedAt }}</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">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" style="flex-shrink:0"><path d="M7 1L13 12H1L7 1Z" stroke="currentColor" stroke-width="1.3" stroke-linejoin="round"/><path d="M7 5.5v3" stroke="currentColor" stroke-width="1.3" stroke-linecap="round"/><circle cx="7" cy="10" r=".7" fill="currentColor"/></svg>
Der aktuelle Mailserver-Zustand wird überschrieben.
</div>
<div style="margin-top:14px;font-size:13px;color:var(--mw-t2)">
Datenbank, E-Mails und Konfiguration werden aus dem Backup vom
<strong style="color:var(--mw-t1)">{{ $startedAt }}</strong> wiederhergestellt.
</div>
<div style="margin-top:10px;font-size:11.5px;color:var(--mw-t4);font-family:monospace">
{{ $filename }}
</div>
</div>
<div class="mw-modal-foot">
<button type="button" wire:click="$dispatch('closeModal')" class="mw-btn-cancel">Abbrechen</button>
<button type="button" wire:click="confirm" class="mbx-btn-primary">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M2 6a4 4 0 1 1 .5 2" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/><path d="M2 4v2H4" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>
Jetzt wiederherstellen
</button>
</div>
</div>