diff --git a/class_registration_app/src/components/CourseSearch.vue b/class_registration_app/src/components/CourseSearch.vue
new file mode 100644
index 0000000..220a505
--- /dev/null
+++ b/class_registration_app/src/components/CourseSearch.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/class_registration_app/src/components/HelloWorld.vue b/class_registration_app/src/components/HelloWorld.vue
deleted file mode 100644
index 38d821e..0000000
--- a/class_registration_app/src/components/HelloWorld.vue
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
{{ msg }}
-
- You’ve successfully created a project with
- Vite +
- Vue 3. What's next?
-
-
-
-
-
diff --git a/class_registration_app/src/components/Login.vue b/class_registration_app/src/components/LoginPage.vue
similarity index 100%
rename from class_registration_app/src/components/Login.vue
rename to class_registration_app/src/components/LoginPage.vue
diff --git a/class_registration_app/src/components/Register.vue b/class_registration_app/src/components/RegisterAccount.vue
similarity index 100%
rename from class_registration_app/src/components/Register.vue
rename to class_registration_app/src/components/RegisterAccount.vue
diff --git a/class_registration_app/src/components/Home.vue b/class_registration_app/src/components/StartUp.vue
similarity index 100%
rename from class_registration_app/src/components/Home.vue
rename to class_registration_app/src/components/StartUp.vue
diff --git a/class_registration_app/src/components/TheWelcome.vue b/class_registration_app/src/components/TheWelcome.vue
deleted file mode 100644
index 49d8f73..0000000
--- a/class_registration_app/src/components/TheWelcome.vue
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
- Documentation
-
- Vue’s
- official documentation
- provides you with all information you need to get started.
-
-
-
-
-
-
- Tooling
-
- This project is served and bundled with
- Vite. The
- recommended IDE setup is
- VSCode +
- Volar. If
- you need to test your components and web pages, check out
- Cypress and
- Cypress Component Testing.
-
-
-
- More instructions are available in README.md
.
-
-
-
-
-
-
- Ecosystem
-
- Get official tools and libraries for your project:
- Pinia,
- Vue Router,
- Vue Test Utils, and
- Vue Dev Tools. If
- you need more resources, we suggest paying
- Awesome Vue
- a visit.
-
-
-
-
-
-
- Community
-
- Got stuck? Ask your question on
- Vue Land, our official
- Discord server, or
- StackOverflow. You should also subscribe to
- our mailing list and follow
- the official
- @vuejs
- twitter account for latest news in the Vue world.
-
-
-
-
-
-
- Support Vue
-
- As an independent project, Vue relies on community backing for its sustainability. You can help
- us by
- becoming a sponsor.
-
-
diff --git a/class_registration_app/src/components/WelcomeItem.vue b/class_registration_app/src/components/WelcomeItem.vue
deleted file mode 100644
index 6d7086a..0000000
--- a/class_registration_app/src/components/WelcomeItem.vue
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
diff --git a/class_registration_app/src/router/index.ts b/class_registration_app/src/router/index.ts
index 6eade25..6d60e98 100644
--- a/class_registration_app/src/router/index.ts
+++ b/class_registration_app/src/router/index.ts
@@ -1,29 +1,36 @@
import { createRouter, createWebHistory } from 'vue-router'
-import Home from '../components/Home.vue'
-import Login from '../components/Login.vue'
-import Register from '../components/Register.vue'
+import StartUp from '../components/StartUp.vue'
+import LoginPage from '../components/LoginPage.vue'
+import RegisterAccount from '../components/RegisterAccount.vue'
+import CourseSearch from '../components/CourseSearch.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
- name: 'home',
- component: Home
+ name: 'Start Up',
+ component: StartUp
},
{
path: '/login',
- name: 'login',
+ name: 'Login Page',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
- component: Login
+ component: LoginPage
},
{
path: '/register',
name: 'Register',
- component: Register,
+ component: RegisterAccount,
+ },
+ {
+ path: '/courses',
+ name: 'Courses',
+ component : CourseSearch,
}
+
]
})