From 1a159300637092d6db958c4028617d0d427e0e61 Mon Sep 17 00:00:00 2001 From: Matthieu Haineault Date: Tue, 23 Dec 2025 07:58:10 -0500 Subject: [PATCH] feat(login): commented the stay-connected toggle and added margin-top to the connection button --- .../auth/components/login-connection-panel.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/modules/auth/components/login-connection-panel.vue b/src/modules/auth/components/login-connection-panel.vue index 8bf798f..5978452 100644 --- a/src/modules/auth/components/login-connection-panel.vue +++ b/src/modules/auth/components/login-connection-panel.vue @@ -2,13 +2,13 @@ setup lang="ts" > - import { computed, ref } from 'vue'; + import { computed } from 'vue'; import { useAuthApi } from 'src/modules/auth/composables/use-auth-api'; const auth_api = useAuthApi(); const email = defineModel('email', { default: '', }); - const is_remembered = ref(false); + // const is_remembered = ref(false); const is_employee_email = computed(() => email.value.includes('@targ')); @@ -44,8 +44,7 @@ {{ $t('login.email') }} - - @@ -63,7 +62,7 @@ {{ $t('login.button.remember_me') }} - + -->