diff --git a/wp-content/themes/ccat/app/components/auth/LoginForm.vue b/wp-content/themes/ccat/app/components/auth/LoginForm.vue
index 451461f..cc74ced 100644
--- a/wp-content/themes/ccat/app/components/auth/LoginForm.vue
+++ b/wp-content/themes/ccat/app/components/auth/LoginForm.vue
@@ -1,5 +1,8 @@
diff --git a/wp-content/themes/ccat/app/components/auth/LogoutForm.vue b/wp-content/themes/ccat/app/components/auth/LogoutForm.vue
index e6ec18b..2a6f5e7 100644
--- a/wp-content/themes/ccat/app/components/auth/LogoutForm.vue
+++ b/wp-content/themes/ccat/app/components/auth/LogoutForm.vue
@@ -1,5 +1,8 @@
diff --git a/wp-content/themes/ccat/app/components/site/SiteHeaderTopAuth.vue b/wp-content/themes/ccat/app/components/site/SiteHeaderTopAuth.vue
index 94f7847..a03d55d 100644
--- a/wp-content/themes/ccat/app/components/site/SiteHeaderTopAuth.vue
+++ b/wp-content/themes/ccat/app/components/site/SiteHeaderTopAuth.vue
@@ -1,13 +1,13 @@
const props = defineProps<{ showLabels: boolean }>();
-const { loggedIn } = useUserSession();
-const label = computed(() => props.showLabels ? (loggedIn.value ? "Déconnexion" : "Connexion") : undefined);
-const to = computed(() => loggedIn.value ? "/espace-membre" : "/devenir-membre");
+const { isLoggedIn } = useAuth();
+const label = computed(() => props.showLabels ? (isLoggedIn.value ? "Espace membre" : "Devenir membre") : undefined);
+const to = computed(() => isLoggedIn.value ? "/espace-membre" : "/devenir-membre");
diff --git a/wp-content/themes/ccat/app/pages/connexion.vue b/wp-content/themes/ccat/app/pages/connexion.vue
index 4fe7a38..bc8ef85 100644
--- a/wp-content/themes/ccat/app/pages/connexion.vue
+++ b/wp-content/themes/ccat/app/pages/connexion.vue
@@ -1,12 +1,13 @@
-
-
+
+
+
+