Files
fizzy/app/views/account/settings/_export.html.erb
T
2026-02-02 12:36:48 +01:00

19 lines
1.0 KiB
Plaintext

<header class="margin-block-start-double">
<h2 class="divider txt-large">Export account data</h2>
<p class="margin-none-block">Download a complete archive of all account data.</p>
</header>
<div data-controller="dialog" data-dialog-modal-value="true">
<button type="button" class="btn" data-action="dialog#open">Begin export...</button>
<dialog class="dialog panel panel--wide shadow" data-dialog-target="dialog">
<h2 class="margin-none txt-large">Export all account data</h2>
<p class="margin-none-block-start">This will generate a ZIP archive of all data in this account including all boards, cards, users, and settings.</p>
<p>When the file is ready, we'll email you a link to download it. The link will expire after 24 hours.</p>
<div class="flex gap justify-center">
<%= button_to "Start export", account_exports_path, method: :post, class: "btn btn--link", form: { data: { action: "submit->dialog#close" } } %>
<button type="button" class="btn" data-action="dialog#close">Cancel</button>
</div>
</dialog>
</div>