frontend Login page createted

This commit is contained in:
Jan 2025-04-07 12:50:54 +02:00
parent f4ce83b5c2
commit 8c2b45830e
3 changed files with 28 additions and 0 deletions

View file

@ -35,6 +35,11 @@ const items = ref([
icon: 'pi pi-graduation-cap', icon: 'pi pi-graduation-cap',
route: '/Student' route: '/Student'
}, },
{
label: 'Login',
icon: 'pi pi-graduation-cap',
route: '/Login'
},
{ {
label: 'Projects', label: 'Projects',
icon: 'pi pi-search', icon: 'pi pi-search',

View file

@ -23,6 +23,13 @@ const router = createRouter({
component: () => import('../views/StudentView.vue'), 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>