diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts index 2034ec4..d6346a7 100644 --- a/frontend/src/router/index.ts +++ b/frontend/src/router/index.ts @@ -23,6 +23,13 @@ const router = createRouter({ component: () => import('../views/StudentView.vue'), }, + { + path: '/Login', + name: 'Login', + + component: () => import('../views/LoginView.vue'), + }, + ], }) diff --git a/frontend/src/views/LoginView.vue b/frontend/src/views/LoginView.vue new file mode 100644 index 0000000..0e9caa8 --- /dev/null +++ b/frontend/src/views/LoginView.vue @@ -0,0 +1,16 @@ + + + + \ No newline at end of file