diff --git a/app/javascript/v3/views/auth/start/FounderNote.vue b/app/javascript/v3/views/auth/start/FounderNote.vue new file mode 100644 index 000000000..0b41ad8e7 --- /dev/null +++ b/app/javascript/v3/views/auth/start/FounderNote.vue @@ -0,0 +1,11 @@ + + + diff --git a/app/javascript/v3/views/auth/start/SetupCompany.vue b/app/javascript/v3/views/auth/start/SetupCompany.vue new file mode 100644 index 000000000..84582811b --- /dev/null +++ b/app/javascript/v3/views/auth/start/SetupCompany.vue @@ -0,0 +1,11 @@ + + + diff --git a/app/javascript/v3/views/auth/start/SetupUser.vue b/app/javascript/v3/views/auth/start/SetupUser.vue new file mode 100644 index 000000000..b92b39326 --- /dev/null +++ b/app/javascript/v3/views/auth/start/SetupUser.vue @@ -0,0 +1,11 @@ + + + diff --git a/app/javascript/v3/views/routes.js b/app/javascript/v3/views/routes.js index 6049530be..cf4b181be 100644 --- a/app/javascript/v3/views/routes.js +++ b/app/javascript/v3/views/routes.js @@ -5,6 +5,9 @@ const Signup = () => import('./auth/signup/Index.vue'); const ResetPassword = () => import('./auth/reset/password/Index.vue'); const Confirmation = () => import('./auth/confirmation/Index.vue'); const PasswordEdit = () => import('./auth/password/Edit.vue'); +const SetupUser = () => import('./auth/start/SetupUser.vue'); +const SetupCompany = () => import('./auth/start/SetupCompany.vue'); +const FounderNote = () => import('./auth/start/FounderNote.vue'); export default [ { @@ -53,4 +56,19 @@ export default [ name: 'auth_reset_password', component: ResetPassword, }, + { + path: frontendURL('auth/start/setup-user'), + name: 'onboarding_setup_user', + component: SetupUser, + }, + { + path: frontendURL('auth/start/setup-company'), + name: 'onboarding_setup_company', + component: SetupCompany, + }, + { + path: frontendURL('auth/start/founders-note'), + name: 'onboarding_founders_note', + component: FounderNote, + }, ];