mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-17 12:31:20 +00:00
Restyle Settings and standard modals around a streamlined left-rail layout, clearer section hierarchy, advanced settings disclosures, and stronger update states. Add persistent update visibility with quieter once-daily update notifications, plus Remote Link and Space Agent actions in the canvas rail. Refresh the tunnel experience as a normal Remote Link modal with clearer copy, QR/mobile affordances, and safer state handling.
50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
<html>
|
|
<head>
|
|
<title>Backup & Restore</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div x-data>
|
|
<div>
|
|
<div class="section-title">Backup & Restore</div>
|
|
<div class="section-description">
|
|
Preserve or restore Agent Zero data with pattern-based file selection.
|
|
</div>
|
|
|
|
<div class="field">
|
|
<div class="field-label">
|
|
<div class="field-title">Create Backup</div>
|
|
<div class="field-description">
|
|
Package selected files and configuration into a backup archive.
|
|
</div>
|
|
</div>
|
|
<div class="field-control">
|
|
<button
|
|
class="btn btn-field"
|
|
@click="window.openModal('settings/backup/backup.html')"
|
|
>
|
|
Create Backup
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<div class="field-label">
|
|
<div class="field-title">Restore from Backup</div>
|
|
<div class="field-description">
|
|
Bring selected files back from an existing backup archive.
|
|
</div>
|
|
</div>
|
|
<div class="field-control">
|
|
<button
|
|
class="btn btn-field"
|
|
@click="window.openModal('settings/backup/restore.html')"
|
|
>
|
|
Restore Backup
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|