@live-change/user-frontend 0.9.36 → 0.9.38
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.
- package/front/src/message-auth/MessageSent.vue +1 -1
- package/front/src/message-auth/email/ConnectEmail.vue +3 -0
- package/front/src/message-auth/email/ResetPasswordEmail.vue +3 -0
- package/front/src/message-auth/email/SignInEmail.vue +3 -0
- package/front/src/message-auth/email/SignUpEmail.vue +3 -0
- package/front/src/sign/SignUpEmail.vue +3 -3
- package/package.json +26 -26
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
v-slot="{ data }">
|
|
17
17
|
<div class="flex justify-center flex-col items-center">
|
|
18
18
|
<div class="p-field mx-1 flex flex-col mb-4">
|
|
19
|
-
<label for="code" class="
|
|
19
|
+
<label for="code" class="sr-only">Code</label>
|
|
20
20
|
<InputOtp id="code" :length="6" class="mb-2"
|
|
21
21
|
v-model="data.secret"
|
|
22
22
|
aria-describedby="code-help" :invalid="!!data.secretError" />
|
|
@@ -74,6 +74,9 @@
|
|
|
74
74
|
const secretLink = secrets.find(secret => secret.type === 'link')
|
|
75
75
|
const secretCode = secrets.find(secret => secret.type === 'code')
|
|
76
76
|
|
|
77
|
+
import { useHead } from '@vueuse/head'
|
|
78
|
+
useHead({ htmlAttrs: { class: 'email-rendering' } })
|
|
79
|
+
|
|
77
80
|
import { useApi } from '@live-change/vue3-ssr'
|
|
78
81
|
const api = useApi()
|
|
79
82
|
|
|
@@ -74,6 +74,9 @@
|
|
|
74
74
|
const secretLink = secrets.find(secret => secret.type === 'link')
|
|
75
75
|
const secretCode = secrets.find(secret => secret.type === 'code')
|
|
76
76
|
|
|
77
|
+
import { useHead } from '@vueuse/head'
|
|
78
|
+
useHead({ htmlAttrs: { class: 'email-rendering' } })
|
|
79
|
+
|
|
77
80
|
import { useApi } from '@live-change/vue3-ssr'
|
|
78
81
|
const api = useApi()
|
|
79
82
|
|
|
@@ -74,6 +74,9 @@
|
|
|
74
74
|
const secretLink = secrets.find(secret => secret.type === 'link')
|
|
75
75
|
const secretCode = secrets.find(secret => secret.type === 'code')
|
|
76
76
|
|
|
77
|
+
import { useHead } from '@vueuse/head'
|
|
78
|
+
useHead({ htmlAttrs: { class: 'email-rendering' } })
|
|
79
|
+
|
|
77
80
|
import { useApi } from '@live-change/vue3-ssr'
|
|
78
81
|
const api = useApi()
|
|
79
82
|
|
|
@@ -74,6 +74,9 @@
|
|
|
74
74
|
const secretLink = secrets.find(secret => secret.type === 'link')
|
|
75
75
|
const secretCode = secrets.find(secret => secret.type === 'code')
|
|
76
76
|
|
|
77
|
+
import { useHead } from '@vueuse/head'
|
|
78
|
+
useHead({ htmlAttrs: { class: 'email-rendering' } })
|
|
79
|
+
|
|
77
80
|
import { useApi } from '@live-change/vue3-ssr'
|
|
78
81
|
const api = useApi()
|
|
79
82
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="w-full lg:w-6/12 md:w-9/12" v-shared-element:form="{ duration: '300ms', includeChildren: true }">
|
|
3
3
|
<div class="bg-surface-0 dark:bg-surface-900 p-6 shadow rounded-border">
|
|
4
4
|
<div class="text-center mb-8">
|
|
5
|
-
<div class="text-surface-900 dark:text-surface-
|
|
5
|
+
<div class="text-surface-900 dark:text-surface-200 text-3xl font-medium mb-4">Sign Up</div>
|
|
6
6
|
<span class="text-surface-600 dark:text-surface-200 font-medium leading-normal">Already have an account?</span>
|
|
7
7
|
<router-link :to="{ name: 'user:signInEmail' }"
|
|
8
8
|
class="font-medium no-underline ml-2 text-blue-500 cursor-pointer">
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
@done="handleSent" keepOnDone>
|
|
14
14
|
|
|
15
15
|
<div class="p-field mb-4">
|
|
16
|
-
<label for="email" class="block text-surface-900 dark:text-surface-
|
|
16
|
+
<label for="email" class="block text-surface-900 dark:text-surface-200 font-medium mb-2">
|
|
17
17
|
Email address
|
|
18
18
|
</label>
|
|
19
19
|
<InputText id="email" type="text" class="w-full"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
/>
|
|
42
42
|
</router-link>
|
|
43
43
|
|
|
44
|
-
<div class="mt-4">
|
|
44
|
+
<div class="mt-4 text-surface-600 dark:text-surface-200">
|
|
45
45
|
By providing your email address or google account, you consent to its processing solely
|
|
46
46
|
for registration and account verification purposes, in accordance with our
|
|
47
47
|
<router-link to="/privacy-policy">Privacy Policy</router-link>.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-frontend",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.38",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "node --inspect --expose-gc server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; node server/start.js localDev --enableSessions --initScript ./init.js",
|
|
@@ -22,29 +22,29 @@
|
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@live-change/cli": "^0.9.
|
|
26
|
-
"@live-change/dao": "^0.9.
|
|
27
|
-
"@live-change/dao-vue3": "^0.9.
|
|
28
|
-
"@live-change/dao-websocket": "^0.9.
|
|
29
|
-
"@live-change/email-service": "^0.9.
|
|
30
|
-
"@live-change/framework": "^0.9.
|
|
31
|
-
"@live-change/identicon-service": "^0.9.
|
|
32
|
-
"@live-change/image-frontend": "^0.9.
|
|
33
|
-
"@live-change/message-authentication-service": "^0.9.
|
|
34
|
-
"@live-change/notification-service": "^0.9.
|
|
35
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
36
|
-
"@live-change/pattern": "^0.9.
|
|
37
|
-
"@live-change/secret-code-service": "^0.9.
|
|
38
|
-
"@live-change/secret-link-service": "^0.9.
|
|
39
|
-
"@live-change/security-frontend": "^0.9.
|
|
40
|
-
"@live-change/security-service": "^0.9.
|
|
41
|
-
"@live-change/session-service": "^0.9.
|
|
42
|
-
"@live-change/timer-service": "^0.9.
|
|
43
|
-
"@live-change/upload-service": "^0.9.
|
|
44
|
-
"@live-change/user-identification-service": "^0.9.
|
|
45
|
-
"@live-change/user-service": "^0.9.
|
|
46
|
-
"@live-change/vue3-components": "^0.9.
|
|
47
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
25
|
+
"@live-change/cli": "^0.9.38",
|
|
26
|
+
"@live-change/dao": "^0.9.38",
|
|
27
|
+
"@live-change/dao-vue3": "^0.9.38",
|
|
28
|
+
"@live-change/dao-websocket": "^0.9.38",
|
|
29
|
+
"@live-change/email-service": "^0.9.38",
|
|
30
|
+
"@live-change/framework": "^0.9.38",
|
|
31
|
+
"@live-change/identicon-service": "^0.9.38",
|
|
32
|
+
"@live-change/image-frontend": "^0.9.38",
|
|
33
|
+
"@live-change/message-authentication-service": "^0.9.38",
|
|
34
|
+
"@live-change/notification-service": "^0.9.38",
|
|
35
|
+
"@live-change/password-authentication-service": "^0.9.38",
|
|
36
|
+
"@live-change/pattern": "^0.9.38",
|
|
37
|
+
"@live-change/secret-code-service": "^0.9.38",
|
|
38
|
+
"@live-change/secret-link-service": "^0.9.38",
|
|
39
|
+
"@live-change/security-frontend": "^0.9.38",
|
|
40
|
+
"@live-change/security-service": "^0.9.38",
|
|
41
|
+
"@live-change/session-service": "^0.9.38",
|
|
42
|
+
"@live-change/timer-service": "^0.9.38",
|
|
43
|
+
"@live-change/upload-service": "^0.9.38",
|
|
44
|
+
"@live-change/user-identification-service": "^0.9.38",
|
|
45
|
+
"@live-change/user-service": "^0.9.38",
|
|
46
|
+
"@live-change/vue3-components": "^0.9.38",
|
|
47
|
+
"@live-change/vue3-ssr": "^0.9.38",
|
|
48
48
|
"@vueuse/core": "^12.3.0",
|
|
49
49
|
"codeceptjs-assert": "^0.0.5",
|
|
50
50
|
"codeceptjs-video-helper": "0.1.3",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"wtfnode": "^0.9.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
68
|
+
"@live-change/codeceptjs-helper": "^0.9.38",
|
|
69
69
|
"codeceptjs": "^3.6.10",
|
|
70
70
|
"generate-password": "1.7.1",
|
|
71
71
|
"playwright": "1.49.1",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
77
77
|
"license": "BSD-3-Clause",
|
|
78
78
|
"description": "",
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "9b2e398863273d9bc51b54df30b498a2da154c98"
|
|
80
80
|
}
|