From 515900ca9d12e32e1944ed38482efaa6ba50d04e Mon Sep 17 00:00:00 2001 From: Reto Aebersold Date: Thu, 9 Nov 2023 11:36:05 +0100 Subject: [PATCH] feat: setup complete --- client/src/components/onboarding/InfoBox.vue | 22 ++++++++ .../src/components/onboarding/WizardPage.vue | 6 ++- .../pages/onboarding/uk/AccountConfirm.vue | 19 +++---- .../pages/onboarding/uk/AccountProfile.vue | 4 +- .../src/pages/onboarding/uk/SetupComplete.vue | 54 +++++++++++++++++++ client/src/router/index.ts | 6 +++ 6 files changed, 99 insertions(+), 12 deletions(-) create mode 100644 client/src/components/onboarding/InfoBox.vue create mode 100644 client/src/pages/onboarding/uk/SetupComplete.vue diff --git a/client/src/components/onboarding/InfoBox.vue b/client/src/components/onboarding/InfoBox.vue new file mode 100644 index 00000000..3bf3451e --- /dev/null +++ b/client/src/components/onboarding/InfoBox.vue @@ -0,0 +1,22 @@ + + + diff --git a/client/src/components/onboarding/WizardPage.vue b/client/src/components/onboarding/WizardPage.vue index 02d01dbc..3b1f4374 100644 --- a/client/src/components/onboarding/WizardPage.vue +++ b/client/src/components/onboarding/WizardPage.vue @@ -12,7 +12,11 @@ const props = defineProps<{ -
+ +
diff --git a/client/src/pages/onboarding/uk/AccountConfirm.vue b/client/src/pages/onboarding/uk/AccountConfirm.vue index 8e30b5bd..91bac002 100644 --- a/client/src/pages/onboarding/uk/AccountConfirm.vue +++ b/client/src/pages/onboarding/uk/AccountConfirm.vue @@ -1,6 +1,7 @@ @@ -9,15 +10,15 @@ const userStore = useUserStore(); diff --git a/client/src/pages/onboarding/uk/AccountProfile.vue b/client/src/pages/onboarding/uk/AccountProfile.vue index 6b6b9ff4..0be51603 100644 --- a/client/src/pages/onboarding/uk/AccountProfile.vue +++ b/client/src/pages/onboarding/uk/AccountProfile.vue @@ -69,10 +69,10 @@ watch(selectedCompany, (company) => { diff --git a/client/src/pages/onboarding/uk/SetupComplete.vue b/client/src/pages/onboarding/uk/SetupComplete.vue new file mode 100644 index 00000000..6aafbe11 --- /dev/null +++ b/client/src/pages/onboarding/uk/SetupComplete.vue @@ -0,0 +1,54 @@ + + + diff --git a/client/src/router/index.ts b/client/src/router/index.ts index 9744f956..05204a12 100644 --- a/client/src/router/index.ts +++ b/client/src/router/index.ts @@ -258,6 +258,12 @@ const router = createRouter({ component: () => import("@/pages/onboarding/uk/AccountProfile.vue"), name: "accountProfile", }, + { + path: "account/complete", + props: true, + component: () => import("@/pages/onboarding/uk/SetupComplete.vue"), + name: "setupComplete", + }, ], }, {