diff --git a/frontend/src/layouts/MyLayout.vue b/frontend/src/layouts/MyLayout.vue
index 6bc4eb9..ab73ffc 100644
--- a/frontend/src/layouts/MyLayout.vue
+++ b/frontend/src/layouts/MyLayout.vue
@@ -99,6 +99,20 @@
Login
+
+
+
+
+
+ Register
+
+
diff --git a/frontend/src/pages/Register.vue b/frontend/src/pages/Register.vue
new file mode 100644
index 0000000..efb2487
--- /dev/null
+++ b/frontend/src/pages/Register.vue
@@ -0,0 +1,180 @@
+
+
+
+
+
diff --git a/frontend/src/router/routes.js b/frontend/src/router/routes.js
index 362b097..03ffe42 100644
--- a/frontend/src/router/routes.js
+++ b/frontend/src/router/routes.js
@@ -54,6 +54,11 @@ const routes = [
path: "/profile/",
component: () => import("layouts/MyLayout.vue"),
children: [{ path: "", component: () => import("pages/Profile.vue") }]
+ },
+ {
+ path: "/register/",
+ component: () => import("layouts/MyLayout.vue"),
+ children: [{ path: "", component: () => import("pages/Register.vue") }]
}
];