@live-change/user-frontend 0.9.171 → 0.9.174
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/sign/SignInEmail.vue +16 -6
- package/package.json +26 -26
|
@@ -3,8 +3,12 @@
|
|
|
3
3
|
<div class="bg-surface-0 dark:bg-surface-900 p-6 shadow rounded-border">
|
|
4
4
|
|
|
5
5
|
<div class="text-center mb-8">
|
|
6
|
-
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
7
|
-
|
|
6
|
+
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
7
|
+
{{ t('auth.welcomeBack') }}
|
|
8
|
+
</div>
|
|
9
|
+
<span class="text-surface-600 dark:text-surface-200 font-medium leading-normal">
|
|
10
|
+
{{ t('auth.dontHaveAccount') }}
|
|
11
|
+
</span>
|
|
8
12
|
<router-link :to="{ name: 'user:signUpEmail' }"
|
|
9
13
|
class="font-medium no-underline ml-2 text-blue-500 cursor-pointer">
|
|
10
14
|
{{ t('auth.createToday') }}</router-link>
|
|
@@ -26,7 +30,9 @@
|
|
|
26
30
|
</div>
|
|
27
31
|
|
|
28
32
|
<div class="p-field mb-4">
|
|
29
|
-
<label for="password" class="block text-surface-900 dark:text-surface-0 font-medium mb-2">
|
|
33
|
+
<label for="password" class="block text-surface-900 dark:text-surface-0 font-medium mb-2">
|
|
34
|
+
{{ t('auth.passwordOptional') }}
|
|
35
|
+
</label>
|
|
30
36
|
<Password id="password" class="w-full" inputClass="w-full" toggleMask :feedback="false"
|
|
31
37
|
aria-describedby="password-help" :invalid="data.passwordHashError"
|
|
32
38
|
v-model="data.passwordHash" />
|
|
@@ -52,14 +58,18 @@
|
|
|
52
58
|
</command-form>
|
|
53
59
|
|
|
54
60
|
<Divider v-if="availableAccountTypes.length > 0" align="center" class="my-6">
|
|
55
|
-
<span class="text-surface-600 dark:text-surface-200 font-normal text-sm">
|
|
61
|
+
<span class="text-surface-600 dark:text-surface-200 font-normal text-sm">
|
|
62
|
+
{{ t('common.or') }}
|
|
63
|
+
</span>
|
|
56
64
|
</Divider>
|
|
57
65
|
|
|
58
66
|
<router-link v-for="accountType in availableAccountTypes"
|
|
59
67
|
:to="accountType.connectRoute"
|
|
60
68
|
class="no-underline">
|
|
61
69
|
<Button
|
|
62
|
-
:label="t('auth.signInWith', {
|
|
70
|
+
:label="t('auth.signInWith', {
|
|
71
|
+
provider: accountType.accountType[0].toUpperCase() + accountType.accountType.slice(1)
|
|
72
|
+
})"
|
|
63
73
|
:icon="`pi pi-${accountType.accountType}`"
|
|
64
74
|
class="w-full p-button-secondary mb-1"
|
|
65
75
|
/>
|
|
@@ -88,7 +98,7 @@
|
|
|
88
98
|
import { useI18n } from 'vue-i18n'
|
|
89
99
|
const { t } = useI18n()
|
|
90
100
|
|
|
91
|
-
import { getContactTypes, getAccountTypes} from '../connected/connected.js'
|
|
101
|
+
import { getContactTypes, getAccountTypes } from '../connected/connected.js'
|
|
92
102
|
const contactsTypes = getContactTypes()
|
|
93
103
|
const accountTypes = getAccountTypes()
|
|
94
104
|
|
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.174",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "tsx --inspect --expose-gc server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "tsx server/start.js localDev --enableSessions --initScript ./init.js --dbAccess",
|
|
@@ -36,29 +36,29 @@
|
|
|
36
36
|
},
|
|
37
37
|
"type": "module",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@live-change/cli": "^0.9.
|
|
40
|
-
"@live-change/dao": "^0.9.
|
|
41
|
-
"@live-change/dao-vue3": "^0.9.
|
|
42
|
-
"@live-change/dao-websocket": "^0.9.
|
|
43
|
-
"@live-change/email-service": "^0.9.
|
|
44
|
-
"@live-change/framework": "^0.9.
|
|
45
|
-
"@live-change/identicon-service": "^0.9.
|
|
46
|
-
"@live-change/image-frontend": "^0.9.
|
|
47
|
-
"@live-change/message-authentication-service": "^0.9.
|
|
48
|
-
"@live-change/notification-service": "^0.9.
|
|
49
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
50
|
-
"@live-change/pattern": "^0.9.
|
|
51
|
-
"@live-change/secret-code-service": "^0.9.
|
|
52
|
-
"@live-change/secret-link-service": "^0.9.
|
|
53
|
-
"@live-change/security-frontend": "^0.9.
|
|
54
|
-
"@live-change/security-service": "^0.9.
|
|
55
|
-
"@live-change/session-service": "^0.9.
|
|
56
|
-
"@live-change/timer-service": "^0.9.
|
|
57
|
-
"@live-change/upload-service": "^0.9.
|
|
58
|
-
"@live-change/user-identification-service": "^0.9.
|
|
59
|
-
"@live-change/user-service": "^0.9.
|
|
60
|
-
"@live-change/vue3-components": "^0.9.
|
|
61
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
39
|
+
"@live-change/cli": "^0.9.174",
|
|
40
|
+
"@live-change/dao": "^0.9.174",
|
|
41
|
+
"@live-change/dao-vue3": "^0.9.174",
|
|
42
|
+
"@live-change/dao-websocket": "^0.9.174",
|
|
43
|
+
"@live-change/email-service": "^0.9.174",
|
|
44
|
+
"@live-change/framework": "^0.9.174",
|
|
45
|
+
"@live-change/identicon-service": "^0.9.174",
|
|
46
|
+
"@live-change/image-frontend": "^0.9.174",
|
|
47
|
+
"@live-change/message-authentication-service": "^0.9.174",
|
|
48
|
+
"@live-change/notification-service": "^0.9.174",
|
|
49
|
+
"@live-change/password-authentication-service": "^0.9.174",
|
|
50
|
+
"@live-change/pattern": "^0.9.174",
|
|
51
|
+
"@live-change/secret-code-service": "^0.9.174",
|
|
52
|
+
"@live-change/secret-link-service": "^0.9.174",
|
|
53
|
+
"@live-change/security-frontend": "^0.9.174",
|
|
54
|
+
"@live-change/security-service": "^0.9.174",
|
|
55
|
+
"@live-change/session-service": "^0.9.174",
|
|
56
|
+
"@live-change/timer-service": "^0.9.174",
|
|
57
|
+
"@live-change/upload-service": "^0.9.174",
|
|
58
|
+
"@live-change/user-identification-service": "^0.9.174",
|
|
59
|
+
"@live-change/user-service": "^0.9.174",
|
|
60
|
+
"@live-change/vue3-components": "^0.9.174",
|
|
61
|
+
"@live-change/vue3-ssr": "^0.9.174",
|
|
62
62
|
"@vueuse/core": "^12.3.0",
|
|
63
63
|
"codeceptjs-assert": "^0.0.5",
|
|
64
64
|
"codeceptjs-video-helper": "0.1.3",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"wtfnode": "^0.9.1"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
82
|
+
"@live-change/codeceptjs-helper": "^0.9.174",
|
|
83
83
|
"codeceptjs": "^3.6.10",
|
|
84
84
|
"generate-password": "1.7.1",
|
|
85
85
|
"playwright": "1.49.1",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
91
91
|
"license": "BSD-3-Clause",
|
|
92
92
|
"description": "",
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "6ebdadad702526df240bd3aa7ac3d97324a0308a"
|
|
94
94
|
}
|