added login page, setup templates

This commit is contained in:
jo.kuehner
2023-11-09 20:17:38 +01:00
parent 5d08c9d557
commit 49e5b6da73
12 changed files with 526 additions and 87 deletions

40
layouts/empty.vue Normal file
View File

@ -0,0 +1,40 @@
<template>
<PageHeader />
<main>
<slot />
</main>
</template>
<script>
import PageHeader from "../layouts/PageHeader.vue";
export default {
name: "Page",
components: {
PageHeader,
}
}
</script>
<style scoped>
* {
box-sizing: border-box;
}
main {
display: flex;
flex-direction: row;
gap: 10px;
padding: 10px 25px 10px 10px;
background-color: #212121;
}
</style>