From 726f73f177df41f8901cf339aebb9612da119521 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 30 Dec 2024 11:52:48 +0100 Subject: [PATCH] feat(ui): logout page --- front/src/components/auth/Logout.vue | 62 ++++++++++++++-------------- 1 file changed, 32 insertions(+), 30 deletions(-) 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') }} + +