This commit is contained in:
2026-04-26 22:02:24 +02:00
commit 73442783b7
1470 changed files with 43422 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<script lang="ts" setup>
import { useRoute } from 'vue-router'
import { ref } from "vue";
import AdminPanelLib from "../../adminpanellib.ts";
import AdminNavbar from "../../components/admin/AdminNavbar.vue";
const route = useRoute();
const token=ref(route.params.token);
const userinfo=ref({})
AdminPanelLib.AdminPanelLib.getUserInfo(token.value).then((result)=>userinfo.value=result);
</script>
<template>
<AdminNavbar/>
<h1>Admin Panel</h1>
<h2>Moin {{ userinfo.username }}!</h2>
</template>