add LoginView

This commit is contained in:
Schnitzel 2025-04-09 10:29:52 +02:00
parent 9daaa94660
commit 726c4844fc
2 changed files with 23 additions and 0 deletions

View file

@ -23,6 +23,13 @@ const router = createRouter({
component: () => import('../views/StudentView.vue'),
},
{
path: '/Login',
name: 'Login',
component: () => import('../views/LoginView.vue'),
},
],
})

View file

@ -0,0 +1,16 @@
<template>
<div class="Login">
<h1>This is the Login Page</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>