add LoginView
This commit is contained in:
parent
9daaa94660
commit
726c4844fc
2 changed files with 23 additions and 0 deletions
|
@ -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'),
|
||||||
|
},
|
||||||
|
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
16
frontend/src/views/LoginView.vue
Normal file
16
frontend/src/views/LoginView.vue
Normal 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>
|
||||||
|
|
Loading…
Add table
Reference in a new issue