diff --git a/frontend/src/stores/auth.js b/frontend/src/stores/auth.js index f4300a9..3da61b9 100644 --- a/frontend/src/stores/auth.js +++ b/frontend/src/stores/auth.js @@ -66,6 +66,7 @@ export const useAuthStore = defineStore('auth', () => { password, totp_code: options.totpCode ?? null, backup_code: options.backupCode ?? null, + remember_me: options.rememberMe ?? false, }) if (data.requires_totp) { diff --git a/frontend/src/views/auth/LoginView.vue b/frontend/src/views/auth/LoginView.vue index 1a28b62..b559433 100644 --- a/frontend/src/views/auth/LoginView.vue +++ b/frontend/src/views/auth/LoginView.vue @@ -27,6 +27,17 @@ /> + +