From c82a1c35a6ae351f73463a4fbb7fbc020cfc51d5 Mon Sep 17 00:00:00 2001 From: Jasper Cheng Date: Tue, 31 Oct 2023 22:28:30 -0400 Subject: [PATCH] Started SearchTool --- src/App.vue | 1 + src/router/index.js | 12 +++++ src/views/ForgotPassword.vue | 90 ++++++++++++++++++++++++++++++++++++ src/views/SearchTool.vue | 70 ++++++++++++++++++++++++++++ 4 files changed, 173 insertions(+) create mode 100644 src/views/ForgotPassword.vue create mode 100644 src/views/SearchTool.vue diff --git a/src/App.vue b/src/App.vue index 33bbb20..dc06780 100644 --- a/src/App.vue +++ b/src/App.vue @@ -18,6 +18,7 @@ export default { { path: '/fetch', label: 'Create an Account' }, { path: { name: 'form' }, label: 'Form Example' }, { path: '/schedule', label: 'Schedule View' }, + { path: '/searchtool', label: 'Search'}, { path: '/admin/createcourse', label: 'Create Course' }, { path: '/login', label: 'Login' }, ] diff --git a/src/router/index.js b/src/router/index.js index 42744d3..0ebe417 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -8,6 +8,8 @@ import AdminCreateCourseView from "../views/AdminCreateCourseView.vue"; import LoginPage from "../views/LoginPage.vue"; import SignUp from "../views/SignUp.vue"; import ScheduleView from "../views/ScheduleView.vue"; +import ForgotPassword from "../views/ForgotPassword.vue"; +import SearchTool from "../views/SearchTool.vue"; const router = createRouter({ // the history mode determines how vue router interacts with the url. @@ -53,6 +55,16 @@ const router = createRouter({ name: "schedule", component: ScheduleView, }, + { + path: "/forgot-password", + name: "forgotpassword", + component: ForgotPassword, + }, + { + path:"/searchtool", + name: "searchtool", + component: SearchTool, + }, ], }); diff --git a/src/views/ForgotPassword.vue b/src/views/ForgotPassword.vue new file mode 100644 index 0000000..87887f4 --- /dev/null +++ b/src/views/ForgotPassword.vue @@ -0,0 +1,90 @@ + + + + + \ No newline at end of file diff --git a/src/views/SearchTool.vue b/src/views/SearchTool.vue new file mode 100644 index 0000000..83b5d8f --- /dev/null +++ b/src/views/SearchTool.vue @@ -0,0 +1,70 @@ + + + + + +