frontend/create-loggin-page #67

Merged
Dr_S_Eggs merged 14 commits from frontend/create-loggin-page into main 2025-04-09 23:15:49 +02:00
2 changed files with 23 additions and 0 deletions
Showing only changes of commit 726c4844fc - Show all commits

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>