diff --git a/packages/frontend/src/pages/settings/2fa.qrdialog.vue b/packages/frontend/src/pages/settings/2fa.qrdialog.vue
index c2d1694c5..4641b4910 100644
--- a/packages/frontend/src/pages/settings/2fa.qrdialog.vue
+++ b/packages/frontend/src/pages/settings/2fa.qrdialog.vue
@@ -83,6 +83,8 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ code }}
+
+ {{ i18n.ts.download }}
@@ -108,6 +110,7 @@ import * as os from '@/os.js';
import MkFolder from '@/components/MkFolder.vue';
import MkInfo from '@/components/MkInfo.vue';
import { confetti } from '@/scripts/confetti.js';
+import { $i } from '@/account.js';
defineProps<{
twoFactorData: {
@@ -143,6 +146,16 @@ async function tokenDone() {
});
}
+function downloadBackupCodes() {
+ if (backupCodes.value !== undefined) {
+ const txtBlob = new Blob([backupCodes.value.join('\n')], { type: 'text/plain' });
+ const dummya = document.createElement('a');
+ dummya.href = URL.createObjectURL(txtBlob);
+ dummya.download = `${$i?.username}-2fa-backup-codes.txt`;
+ dummya.click();
+ }
+}
+
function allDone() {
dialog.value.close();
}