diff --git a/front/src/components/auth/Logout.vue b/front/src/components/auth/Logout.vue index cf9ebef16..63e6898f6 100644 --- a/front/src/components/auth/Logout.vue +++ b/front/src/components/auth/Logout.vue @@ -4,6 +4,7 @@ import { useI18n } from 'vue-i18n' import { useStore } from '~/store' import Button from '~/components/ui/Button.vue' +import Spacer from '~/components/ui/layout/Spacer.vue' const store = useStore() const { t } = useI18n() @@ -18,37 +19,38 @@ const labels = computed(() => ({ v-title="labels.title" class="main" > -
-
+

+ {{ t('components.auth.Logout.header.confirm') }} +

+

+ {{ t('components.auth.Logout.message.loggedIn', { username: store.state.auth.username }) }} +

+ + -
-
+
+
+

+ {{ t('components.auth.Logout.header.unauthenticated') }} +

+ -

- {{ t('components.auth.Logout.header.unauthenticated') }} -

- - {{ t('components.auth.Logout.link.login') }} - -
-
+ {{ t('components.auth.Logout.link.login') }} + +