Login form

This commit is contained in:
2024-09-05 18:12:08 +02:00
parent 4662a929a0
commit 5fdf9315c9
9 changed files with 92 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
import LoginForm from './loginForm.vue';
</script>
<template>
<v-container max-width="600">
<v-row>
<v-col>
<login-form />
</v-col>
</v-row>
</v-container>
</template>