Login form

This commit is contained in:
2024-09-05 18:12:08 +02:00
parent 4d1eec023d
commit 22cc811ae5
9 changed files with 92 additions and 20 deletions

View File

@@ -9,26 +9,19 @@ const banner: Ref<BannerModel> = ref(new BannerModel())
</script>
<template>
<v-container>
<v-container max-width="800">
<alert-banner v-model:alert-banner="banner" />
<v-row>
<v-col>
<v-container max-width="800">
<alert-banner v-model:alert-banner="banner" />
<page-setup />
</v-col>
</v-row>
<v-row>
<v-col>
<page-setup />
</v-col>
</v-row>
<v-row>
<v-col>
<system-setup v-model:alert-banner="banner" />
</v-col>
</v-row>
</v-container>
<v-row>
<v-col>
<system-setup v-model:alert-banner="banner" />
</v-col>
</v-row>
</v-container>
</template>