feat(ui): FRO-13 User Component (#18)

Added possibility to log off as a user

Co-authored-by: LQ63 <lkhermann@web.de>
Reviewed-on: #18
Reviewed-by: Janis <janis-e@gmx.de>
Co-authored-by: lq64 <lq@blackhole.local>
Co-committed-by: lq64 <lq@blackhole.local>
This commit is contained in:
2025-12-10 17:08:23 +01:00
committed by Janis
parent 43920b25f3
commit f05f10ea56
2 changed files with 96 additions and 9 deletions

View File

@@ -1,18 +1,24 @@
<script setup lang="ts">
import MainMenuBoxes from "@/components/MainMenuBoxes.vue";
import UserStatusArea from '../components/User.vue'
</script>
<template>
<q-layout view="hHh lpR fFf" class="font-roboto">
<q-page-container>
<q-page class="flex justify-start items-center column">
<q-header elevated class="bg-dark text-white">
<q-toolbar>
<q-toolbar-title class="q-ml-md">
</q-toolbar-title>
<header class="text-center q-mb-xl">
<h1 class="game-title text-white q-my-none">
KnockOutWhist
</h1>
</header>
<router-view></router-view>
<UserStatusArea />
</q-toolbar>
</q-header>
<q-page-container>
<q-page class="flex justify-start items-center column q-pa-md"> <header class="text-center q-mb-xl q-mt-md"> <h1 class="game-title text-white q-my-none">
KnockOutWhist
</h1>
</header>
<router-view></router-view>
</q-page>
</q-page-container>
</q-layout>