@fishawack/lab-velocity 1.10.4 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,6 +14,7 @@ const store = {
|
|
|
14
14
|
redirect: process.env.HYDRATE_REDIRECT ?? 'index',
|
|
15
15
|
postLoginRedirect: process.env.HYDRATE_FRONTENDREDIRECT ?? process.env.HYDRATE_REDIRECT ?? 'index',
|
|
16
16
|
autoLogin: process.env.HYDRATE_ADMIN === 'true' ? true: false,
|
|
17
|
+
platformName: process.env.HYDRATE_PLATFORM ?? 'Expert Partnership',
|
|
17
18
|
}
|
|
18
19
|
},
|
|
19
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<h1 class="h2 h2--small">Verification complete</h1>
|
|
3
|
-
<p class="mb-0"><strong>Welcome to
|
|
3
|
+
<p class="mb-0"><strong>Welcome to {{ $store.state?.auth?.platformName }}, {{ $store.state?.auth?.user?.name }}!</strong></p>
|
|
4
4
|
<p>Your account has been verified successfully.</p>
|
|
5
5
|
|
|
6
6
|
<elButton
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<strong class="">Email: {{ user?.email }}</strong>
|
|
7
7
|
</p>
|
|
8
8
|
<p class="AM-mt-0.5">
|
|
9
|
-
<strong>Please check your inbox</strong> for a Verification email from
|
|
9
|
+
<strong>Please check your inbox</strong> for a Verification email from {{ $store.state?.auth?.platformName }}. Click the link in that email to verify your email address and complete your registration.
|
|
10
10
|
</p>
|
|
11
11
|
<p class="AM-mt-0.5 AM-mb-0">
|
|
12
12
|
Haven’t received the email after 10 minutes?
|