diff --git a/.idea/modules/de.hhn.labsw.BuGaGeocaching.main.iml b/.idea/modules/de.hhn.labsw.BuGaGeocaching.main.iml index 8125158..3aaad4b 100644 --- a/.idea/modules/de.hhn.labsw.BuGaGeocaching.main.iml +++ b/.idea/modules/de.hhn.labsw.BuGaGeocaching.main.iml @@ -20,31 +20,44 @@ + + + + + + - - + + - - + + - - - + + + + + + + + + + @@ -55,11 +68,7 @@ - - - - - + @@ -67,6 +76,7 @@ + @@ -75,7 +85,8 @@ - + + diff --git a/.idea/modules/de.hhn.labsw.BuGaGeocaching.test.iml b/.idea/modules/de.hhn.labsw.BuGaGeocaching.test.iml index e0b1017..a2d587e 100644 --- a/.idea/modules/de.hhn.labsw.BuGaGeocaching.test.iml +++ b/.idea/modules/de.hhn.labsw.BuGaGeocaching.test.iml @@ -22,26 +22,46 @@ + + + + + + - - + + - - + + - + + + + + + + + + + + + + + + @@ -49,18 +69,6 @@ - - - - - - - - - - - - @@ -74,6 +82,7 @@ + @@ -81,6 +90,7 @@ + @@ -93,7 +103,8 @@ - + + diff --git a/frontend/src/layouts/MyLayout.vue b/frontend/src/layouts/MyLayout.vue index ed0e123..80d0441 100644 --- a/frontend/src/layouts/MyLayout.vue +++ b/frontend/src/layouts/MyLayout.vue @@ -73,11 +73,10 @@ diff --git a/frontend/src/pages/Profile.vue b/frontend/src/pages/Profile.vue new file mode 100644 index 0000000..3a6bafb --- /dev/null +++ b/frontend/src/pages/Profile.vue @@ -0,0 +1,136 @@ + + + + diff --git a/frontend/src/router/routes.js b/frontend/src/router/routes.js index bcecad6..502b91d 100644 --- a/frontend/src/router/routes.js +++ b/frontend/src/router/routes.js @@ -38,6 +38,11 @@ const routes = [ path: "/login/", component: () => import("layouts/MyLayout.vue"), children: [{ path: "", component: () => import("pages/Login.vue") }] + }, + { + path: "/profile/", + component: () => import("layouts/MyLayout.vue"), + children: [{ path: "", component: () => import("pages/Profile.vue") }] } ];