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

22 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<section class="settings__section">
<header>
<h2 class="divider">Export account data</h2>
<div>Download a complete archive of all account data.</div>
</header>
<div data-controller="dialog" data-dialog-modal-value="true" data-action="keydown.esc->dialog#close">
<button type="button" class="btn" data-action="dialog#open">Begin export...</button>
<dialog class="dialog panel panel--wide shadow" data-dialog-target="dialog" style="--panel-size: 48ch;">
<h2 class="txt-large">Export all account data</h2>
<p>This will generate a ZIP archive of all data in this account including all boards, cards, users, and settings.</p>
<p>Well email you a link to download the file when its ready. 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>
</section>