From 160ee30b7d9b7cd34ad6567b20b30b6f999a6a84 Mon Sep 17 00:00:00 2001 From: ogerly Date: Tue, 29 Mar 2022 12:37:22 +0200 Subject: [PATCH] add import ResetPassword ForgotPassword --- frontend/src/layouts/AuthTemplate.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/frontend/src/layouts/AuthTemplate.vue b/frontend/src/layouts/AuthTemplate.vue index 72ae1fd14..c3bc39f92 100644 --- a/frontend/src/layouts/AuthTemplate.vue +++ b/frontend/src/layouts/AuthTemplate.vue @@ -15,7 +15,15 @@ +
+
+
+
+ +
+
+
@@ -25,6 +33,9 @@ import AuthHeader from '@/components/Auth/Header.vue' import AuthLogin from '@/components/Auth/Login.vue' import AuthRegister from '@/components/Auth/Register.vue' +import AuthForgotPassword from '@/components/Auth/ForgotPassword.vue' +import AuthResetPassword from '@/components/Auth/ResetPassword.vue' + // import AuthLayoutGdd from '@/layouts/AuthLayout_gdd.vue' export default { @@ -33,6 +44,8 @@ export default { AuthHeader, AuthLogin, AuthRegister, + AuthForgotPassword, + AuthResetPassword, // AuthLayoutGdd, }, }