feat(#5): use auth

This commit is contained in:
Sirttas
2026-06-28 14:18:09 +02:00
parent e7249df23f
commit 61fbc8e16b
11 changed files with 1263 additions and 26 deletions
+9 -1
View File
@@ -1,6 +1,14 @@
<script setup lang="ts">
import {useAuthStore} from '@/auth';
const authStore = useAuthStore();
</script>
<template>
<div></div>
<div class="flex flex-col items-center justify-center h-screen gap-4">
<h1 class="text-2xl">eveal</h1>
<button v-if="!authStore.isAuthenticated" @click="authStore.login()">
Login with EVE Online
</button>
</div>
</template>