@designcrowd/fe-shared-lib 1.0.8-ml-82-11 → 1.0.8-ml-82-12
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/package.json
CHANGED
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
</p>
|
|
58
58
|
<div class="tw-flex tw-flex-col">
|
|
59
59
|
<div>
|
|
60
|
-
<form id="signin"
|
|
60
|
+
<form id="signin" action="/identity/account/signin" method="post" @submit="validate">
|
|
61
61
|
<input name="__RequestVerificationToken" type="hidden" :value="antiForgeryToken" />
|
|
62
62
|
<label for="userName" class="tw-sr-only"> {{ emailLabel }} </label>
|
|
63
63
|
<input
|
|
@@ -340,11 +340,6 @@ export default {
|
|
|
340
340
|
required: false,
|
|
341
341
|
default: undefined,
|
|
342
342
|
},
|
|
343
|
-
returnUrl: {
|
|
344
|
-
type: String,
|
|
345
|
-
required: false,
|
|
346
|
-
default: undefined,
|
|
347
|
-
},
|
|
348
343
|
},
|
|
349
344
|
data() {
|
|
350
345
|
return {
|
|
@@ -405,9 +400,6 @@ export default {
|
|
|
405
400
|
}
|
|
406
401
|
return this.signUpText;
|
|
407
402
|
},
|
|
408
|
-
actionUrl() {
|
|
409
|
-
return this.returnUrl ? `/identity/account/signin?returnUrl=${this.returnUrl}` : '/identity/account/signin';
|
|
410
|
-
},
|
|
411
403
|
},
|
|
412
404
|
watch: {
|
|
413
405
|
capturePassword() {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
<h2 v-if="title" class="tw-text-center tw-text-4xl tw-font-bold tw-mb-6">
|
|
33
33
|
{{ title }}
|
|
34
34
|
</h2>
|
|
35
|
-
<form id="signup"
|
|
35
|
+
<form id="signup" action="/identity/account/signup" method="post" @submit="validate">
|
|
36
36
|
<input name="__RequestVerificationToken" type="hidden" :value="antiForgeryToken" />
|
|
37
37
|
<label for="userName" class="tw-sr-only"> {{ emailLabel }} </label>
|
|
38
38
|
<input
|
|
@@ -225,11 +225,6 @@ export default {
|
|
|
225
225
|
required: false,
|
|
226
226
|
default: undefined,
|
|
227
227
|
},
|
|
228
|
-
returnUrl: {
|
|
229
|
-
type: String,
|
|
230
|
-
required: false,
|
|
231
|
-
default: undefined,
|
|
232
|
-
},
|
|
233
228
|
},
|
|
234
229
|
data() {
|
|
235
230
|
return {
|
|
@@ -263,9 +258,6 @@ export default {
|
|
|
263
258
|
}
|
|
264
259
|
return url?.toString();
|
|
265
260
|
},
|
|
266
|
-
actionUrl() {
|
|
267
|
-
return this.returnUrl ? `/identity/account/signup?returnUrl=${this.returnUrl}` : '/identity/account/signup';
|
|
268
|
-
},
|
|
269
261
|
},
|
|
270
262
|
methods: {
|
|
271
263
|
validate(e) {
|