@tapni/auth 0.0.37 → 0.0.39
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/dist/TapniAuth.es.js +321 -325
- package/dist/TapniAuth.umd.js +2 -2
- package/package.json +1 -1
- package/src/mixins/auth.mixin.js +1 -3
- package/src/services/Api.js +1 -1
- package/src/services/UtilService.js +0 -3
- package/src/views/Login.vue +1 -5
package/dist/TapniAuth.es.js
CHANGED
|
@@ -13,10 +13,10 @@ import { Browser as H } from "@capacitor/browser";
|
|
|
13
13
|
import qe from "qr-code-styling";
|
|
14
14
|
import { sanitizeUrl as Me } from "@braintree/sanitize-url";
|
|
15
15
|
import "@tapni/capacitor-reactive-localstorage-vue3";
|
|
16
|
-
const Re = "0.0.
|
|
16
|
+
const Re = "0.0.39", m = (e, a = !1) => {
|
|
17
17
|
const n = Re;
|
|
18
18
|
let o = "https://api.tapni.co/v1/";
|
|
19
|
-
location.hostname.includes("dev.") && (o = "https://api-dev.tapni.co");
|
|
19
|
+
location.hostname.includes("dev.") && (o = "https://api-dev.tapni.co/v1/");
|
|
20
20
|
let i = Y.create({
|
|
21
21
|
baseURL: o,
|
|
22
22
|
headers: {
|
|
@@ -4484,7 +4484,7 @@ const z = {
|
|
|
4484
4484
|
(a) => this.redirect_uri.startsWith(a)
|
|
4485
4485
|
))
|
|
4486
4486
|
return console.log("Redirect URI not allowed");
|
|
4487
|
-
location.href = this.redirect_uri + "?code=" + e.data.auth_code + "&state=" + this.state;
|
|
4487
|
+
location.href = -this.redirect_uri + "?code=" + e.data.auth_code + "&state=" + this.state;
|
|
4488
4488
|
} else
|
|
4489
4489
|
this.display === "popup" ? this.allowedOrigins.forEach((a) => {
|
|
4490
4490
|
var n;
|
|
@@ -4609,14 +4609,14 @@ const z = {
|
|
|
4609
4609
|
this.ssoUser = e, this.$storage && this.ssoUser && this.$storage.username === this.ssoUser.username && (this.appLanguage = e.ssoLang);
|
|
4610
4610
|
},
|
|
4611
4611
|
getRefreshTokens() {
|
|
4612
|
-
return
|
|
4612
|
+
return this.$storage.refreshTokens.split(",");
|
|
4613
4613
|
},
|
|
4614
4614
|
setRefreshToken(e) {
|
|
4615
4615
|
let a = this.getRefreshTokens();
|
|
4616
4616
|
e && !a.includes(e) ? a.unshift(e) : a = a.filter((n) => n !== this.refreshToken), a.length >= 1 ? this.refreshToken = a[0] : this.refreshToken = e, this.$storage.refreshTokens = a.join(","), d.$emit("ssoEvent", { name: "setRefreshToken", data: e });
|
|
4617
4617
|
},
|
|
4618
4618
|
setToken(e) {
|
|
4619
|
-
|
|
4619
|
+
this.$storage.token = e, this.token = e, d.$emit("ssoEvent", { name: "setToken", data: e });
|
|
4620
4620
|
},
|
|
4621
4621
|
setUserID(e) {
|
|
4622
4622
|
this.$storage.UserId = e;
|
|
@@ -5205,9 +5205,6 @@ const F = {
|
|
|
5205
5205
|
}
|
|
5206
5206
|
},
|
|
5207
5207
|
methods: {
|
|
5208
|
-
bum() {
|
|
5209
|
-
console.log("lo", this.$storage), this.$storage.verifyEmail = "123123123";
|
|
5210
|
-
},
|
|
5211
5208
|
async submit() {
|
|
5212
5209
|
if (this.submitted)
|
|
5213
5210
|
return;
|
|
@@ -5249,81 +5246,84 @@ const F = {
|
|
|
5249
5246
|
})
|
|
5250
5247
|
], -1), ta = [
|
|
5251
5248
|
na
|
|
5252
|
-
], ia =
|
|
5249
|
+
], ia = {
|
|
5250
|
+
class: "bold no-bottom center-text",
|
|
5251
|
+
style: { "margin-top": "63px" }
|
|
5252
|
+
}, oa = /* @__PURE__ */ t("p", { class: "half-bottom small-top center-text color-black" }, null, -1), ra = { key: 1 }, sa = { class: "page-login-field half-top" }, ca = /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
5253
5253
|
/* @__PURE__ */ t("img", {
|
|
5254
5254
|
src: "https://cdn.tapni.co/icons/user.png",
|
|
5255
5255
|
class: "responsive-image",
|
|
5256
5256
|
style: { width: "50%" }
|
|
5257
5257
|
})
|
|
5258
|
-
], -1),
|
|
5258
|
+
], -1), la = ["placeholder"], da = /* @__PURE__ */ t("em", null, null, -1), pa = { class: "page-login-field half-bottom" }, ua = /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
5259
5259
|
/* @__PURE__ */ t("img", {
|
|
5260
5260
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
5261
5261
|
class: "responsive-image",
|
|
5262
5262
|
style: { width: "50%" }
|
|
5263
5263
|
})
|
|
5264
|
-
], -1),
|
|
5264
|
+
], -1), _a = ["type", "placeholder"], ma = {
|
|
5265
5265
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
5266
5266
|
class: "responsive-image password-reveal-icon"
|
|
5267
|
-
},
|
|
5267
|
+
}, ga = {
|
|
5268
5268
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
5269
5269
|
class: "responsive-image password-reveal-icon"
|
|
5270
|
-
},
|
|
5270
|
+
}, ha = {
|
|
5271
5271
|
type: "submit",
|
|
5272
5272
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
5273
|
-
},
|
|
5273
|
+
}, fa = { key: 0 }, va = {
|
|
5274
5274
|
key: 1,
|
|
5275
5275
|
class: "button--loading button__loader"
|
|
5276
|
-
},
|
|
5276
|
+
}, ka = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin half-top half-bottom" }, null, -1), ba = /* @__PURE__ */ t("img", {
|
|
5277
5277
|
src: "https://cdn.tapni.co/icons/apple-logo.png",
|
|
5278
5278
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
5279
|
-
}, null, -1),
|
|
5279
|
+
}, null, -1), ya = { key: 0 }, wa = {
|
|
5280
5280
|
key: 1,
|
|
5281
5281
|
class: "button--loading button__loader"
|
|
5282
|
-
},
|
|
5282
|
+
}, za = /* @__PURE__ */ t("img", {
|
|
5283
5283
|
src: "https://cdn.tapni.co/icons/g-logo.png",
|
|
5284
5284
|
style: { position: "absolute", "margin-left": "-10px", padding: "8px 0", height: "100%" }
|
|
5285
|
-
}, null, -1),
|
|
5285
|
+
}, null, -1), La = { key: 0 }, Sa = {
|
|
5286
5286
|
key: 1,
|
|
5287
5287
|
class: "button--loading-black button__loader"
|
|
5288
|
-
},
|
|
5288
|
+
}, Ca = /* @__PURE__ */ t("img", {
|
|
5289
5289
|
src: "https://cdn.tapni.co/icons/facebook-blue.png",
|
|
5290
5290
|
style: { position: "absolute", "margin-left": "-9px", padding: "10px 0", height: "100%" }
|
|
5291
|
-
}, null, -1),
|
|
5291
|
+
}, null, -1), Ta = { key: 0 }, ja = {
|
|
5292
5292
|
key: 1,
|
|
5293
5293
|
class: "button--loading-black button__loader"
|
|
5294
|
-
},
|
|
5294
|
+
}, Pa = /* @__PURE__ */ t("img", {
|
|
5295
5295
|
src: "https://cdn.tapni.co/icons/outlook.png",
|
|
5296
5296
|
style: { position: "absolute", "margin-left": "-8px", padding: "10px 0", height: "100%" }
|
|
5297
|
-
}, null, -1),
|
|
5297
|
+
}, null, -1), Aa = { key: 0 }, Ia = {
|
|
5298
5298
|
key: 1,
|
|
5299
5299
|
class: "button--loading-black button__loader"
|
|
5300
|
-
},
|
|
5300
|
+
}, Ea = /* @__PURE__ */ t("img", {
|
|
5301
5301
|
src: "https://cdn.tapni.co/icons/sso-key.png",
|
|
5302
5302
|
style: { position: "absolute", "margin-left": "-8px", padding: "10px 0", height: "100%" }
|
|
5303
|
-
}, null, -1),
|
|
5303
|
+
}, null, -1), xa = { key: 0 }, qa = {
|
|
5304
5304
|
key: 1,
|
|
5305
5305
|
class: "button--loading-black button__loader"
|
|
5306
|
-
},
|
|
5306
|
+
}, Ma = /* @__PURE__ */ t("img", {
|
|
5307
5307
|
src: "https://cdn.tapni.co/icons/sso-key.png",
|
|
5308
5308
|
style: { position: "absolute", "margin-left": "-8px", padding: "10px 0", height: "100%" }
|
|
5309
|
-
}, null, -1),
|
|
5309
|
+
}, null, -1), Ra = { key: 0 }, Na = {
|
|
5310
5310
|
key: 1,
|
|
5311
5311
|
class: "button--loading-black button__loader"
|
|
5312
|
-
},
|
|
5312
|
+
}, Va = /* @__PURE__ */ t("img", {
|
|
5313
5313
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5314
5314
|
style: { position: "absolute", "margin-left": "-8px", padding: "12px 0", height: "100%" }
|
|
5315
|
-
}, null, -1),
|
|
5315
|
+
}, null, -1), Oa = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1), Ba = { class: "close-text center-text half-top color-black" }, Da = /* @__PURE__ */ t("br", null, null, -1), Ua = {
|
|
5316
5316
|
class: "",
|
|
5317
5317
|
href: "https://tapni.co/policies/terms-of-service"
|
|
5318
|
-
},
|
|
5318
|
+
}, Ka = { href: "https://tapni.co/policies/privacy-policy" }, $a = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1), Ha = {
|
|
5319
5319
|
key: 9,
|
|
5320
5320
|
class: "page-login-links"
|
|
5321
|
-
},
|
|
5322
|
-
function
|
|
5321
|
+
}, Fa = /* @__PURE__ */ t("div", { class: "clear" }, null, -1), Qa = { class: "forgot center-text pointer small-top" }, Ga = /* @__PURE__ */ t("br", null, null, -1), Wa = /* @__PURE__ */ t("div", { class: "clear" }, null, -1);
|
|
5322
|
+
function Xa(e, a, n, o, i, r) {
|
|
5323
5323
|
const u = V("router-link");
|
|
5324
5324
|
return c(), l("form", {
|
|
5325
5325
|
class: "page-login content-boxed content-boxed-padding",
|
|
5326
|
-
onSubmit: a[
|
|
5326
|
+
onSubmit: a[13] || (a[13] = w((...s) => r.submit && r.submit(...s), ["prevent"])),
|
|
5327
5327
|
autocomplete: "on",
|
|
5328
5328
|
style: R(n.isModal ? "max-width: 500px;" : "")
|
|
5329
5329
|
}, [
|
|
@@ -5333,18 +5333,14 @@ function Wa(e, a, n, o, i, r) {
|
|
|
5333
5333
|
class: "color-black pull-right pointer",
|
|
5334
5334
|
style: { "margin-top": "0px", position: "absolute", right: "-20px", "text-align": "right" }
|
|
5335
5335
|
}, ta)) : h("", !0),
|
|
5336
|
-
t("h1",
|
|
5337
|
-
|
|
5338
|
-
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
ia,
|
|
5342
|
-
r.displayFormLogin ? (c(), l("span", oa, [
|
|
5343
|
-
t("div", ra, [
|
|
5344
|
-
sa,
|
|
5336
|
+
t("h1", ia, p(this.ssoLang[this.appLanguage].login), 1),
|
|
5337
|
+
oa,
|
|
5338
|
+
r.displayFormLogin ? (c(), l("span", ra, [
|
|
5339
|
+
t("div", sa, [
|
|
5340
|
+
ca,
|
|
5345
5341
|
k(t("input", {
|
|
5346
|
-
"onUpdate:modelValue": a[
|
|
5347
|
-
onKeydown: a[
|
|
5342
|
+
"onUpdate:modelValue": a[1] || (a[1] = (s) => i.emailOrUsername = s),
|
|
5343
|
+
onKeydown: a[2] || (a[2] = E(w(() => {
|
|
5348
5344
|
}, ["prevent"]), ["space"])),
|
|
5349
5345
|
autocorrect: "off",
|
|
5350
5346
|
autocapitalize: "off",
|
|
@@ -5353,117 +5349,117 @@ function Wa(e, a, n, o, i, r) {
|
|
|
5353
5349
|
name: "email",
|
|
5354
5350
|
placeholder: e.ssoLang[this.appLanguage].email_username,
|
|
5355
5351
|
required: ""
|
|
5356
|
-
}, null, 40,
|
|
5352
|
+
}, null, 40, la), [
|
|
5357
5353
|
[x, i.emailOrUsername]
|
|
5358
5354
|
]),
|
|
5359
|
-
|
|
5355
|
+
da
|
|
5360
5356
|
]),
|
|
5361
|
-
t("div",
|
|
5362
|
-
|
|
5357
|
+
t("div", pa, [
|
|
5358
|
+
ua,
|
|
5363
5359
|
k(t("input", {
|
|
5364
|
-
"onUpdate:modelValue": a[
|
|
5360
|
+
"onUpdate:modelValue": a[3] || (a[3] = (s) => i.password = s),
|
|
5365
5361
|
type: i.revealPassword ? "text" : "password",
|
|
5366
5362
|
placeholder: e.ssoLang[this.appLanguage].password,
|
|
5367
5363
|
name: "password",
|
|
5368
5364
|
required: "",
|
|
5369
5365
|
minlength: "8"
|
|
5370
|
-
}, null, 8,
|
|
5366
|
+
}, null, 8, _a), [
|
|
5371
5367
|
[K, i.password]
|
|
5372
5368
|
]),
|
|
5373
5369
|
t("em", {
|
|
5374
|
-
onClick: a[
|
|
5370
|
+
onClick: a[4] || (a[4] = (s) => i.revealPassword = !i.revealPassword),
|
|
5375
5371
|
class: "pointer"
|
|
5376
5372
|
}, [
|
|
5377
|
-
k(t("img",
|
|
5373
|
+
k(t("img", ma, null, 512), [
|
|
5378
5374
|
[I, !i.revealPassword]
|
|
5379
5375
|
]),
|
|
5380
|
-
k(t("img",
|
|
5376
|
+
k(t("img", ga, null, 512), [
|
|
5381
5377
|
[I, i.revealPassword]
|
|
5382
5378
|
])
|
|
5383
5379
|
])
|
|
5384
5380
|
]),
|
|
5385
|
-
t("button",
|
|
5386
|
-
i.submitted ? (c(), l("span",
|
|
5381
|
+
t("button", ha, [
|
|
5382
|
+
i.submitted ? (c(), l("span", va)) : (c(), l("span", fa, p(e.ssoLang[e.appLanguage].login), 1))
|
|
5387
5383
|
])
|
|
5388
5384
|
])) : h("", !0),
|
|
5389
|
-
|
|
5385
|
+
ka,
|
|
5390
5386
|
e.displayAppleLogin ? (c(), l("a", {
|
|
5391
5387
|
key: 2,
|
|
5392
|
-
onClick: a[
|
|
5388
|
+
onClick: a[5] || (a[5] = (...s) => e.appleLogin && e.appleLogin(...s)),
|
|
5393
5389
|
class: "button-center button button-90 google-button pointer"
|
|
5394
5390
|
}, [
|
|
5395
|
-
|
|
5396
|
-
e.appleLoad ? (c(), l("span",
|
|
5391
|
+
ba,
|
|
5392
|
+
e.appleLoad ? (c(), l("span", wa)) : (c(), l("span", ya, p(e.ssoLang[e.appLanguage].sign_in_with) + " Apple", 1))
|
|
5397
5393
|
])) : h("", !0),
|
|
5398
5394
|
e.displayGoogleLogin ? (c(), l("a", {
|
|
5399
5395
|
key: 3,
|
|
5400
|
-
onClick: a[
|
|
5396
|
+
onClick: a[6] || (a[6] = (...s) => e.googleLogin && e.googleLogin(...s)),
|
|
5401
5397
|
class: "button-center button button-90 google-button pointer"
|
|
5402
5398
|
}, [
|
|
5403
|
-
|
|
5404
|
-
e.googleLoad ? (c(), l("span",
|
|
5399
|
+
za,
|
|
5400
|
+
e.googleLoad ? (c(), l("span", Sa)) : (c(), l("span", La, p(e.ssoLang[e.appLanguage].sign_in_with) + " Google", 1))
|
|
5405
5401
|
])) : h("", !0),
|
|
5406
5402
|
e.displayFacebookLogin ? (c(), l("a", {
|
|
5407
5403
|
key: 4,
|
|
5408
|
-
onClick: a[
|
|
5404
|
+
onClick: a[7] || (a[7] = (...s) => e.facebookLogin && e.facebookLogin(...s)),
|
|
5409
5405
|
class: "button-center button button-90 google-button pointer"
|
|
5410
5406
|
}, [
|
|
5411
|
-
|
|
5412
|
-
e.facebookLoad ? (c(), l("span",
|
|
5407
|
+
Ca,
|
|
5408
|
+
e.facebookLoad ? (c(), l("span", ja)) : (c(), l("span", Ta, p(e.ssoLang[e.appLanguage].sign_in_with) + " Facebook", 1))
|
|
5413
5409
|
])) : h("", !0),
|
|
5414
5410
|
e.displayMicrosoftSSOLogin ? h("", !0) : (c(), l("a", {
|
|
5415
5411
|
key: 5,
|
|
5416
|
-
onClick: a[
|
|
5412
|
+
onClick: a[8] || (a[8] = (...s) => e.microsoftLogin && e.microsoftLogin(...s)),
|
|
5417
5413
|
class: "button-center button button-90 google-button pointer"
|
|
5418
5414
|
}, [
|
|
5419
|
-
|
|
5420
|
-
e.microsoftLoad ? (c(), l("span",
|
|
5415
|
+
Pa,
|
|
5416
|
+
e.microsoftLoad ? (c(), l("span", Ia)) : (c(), l("span", Aa, p(e.ssoLang[e.appLanguage].sign_in_with) + " Outlook", 1))
|
|
5421
5417
|
])),
|
|
5422
5418
|
e.displayMicrosoftSSOLogin ? h("", !0) : (c(), l("a", {
|
|
5423
5419
|
key: 6,
|
|
5424
|
-
onClick: a[
|
|
5420
|
+
onClick: a[9] || (a[9] = (...s) => e.ssoLogin && e.ssoLogin(...s)),
|
|
5425
5421
|
class: "button-center button button-90 google-button pointer"
|
|
5426
5422
|
}, [
|
|
5427
|
-
|
|
5428
|
-
e.microsoftSSOLoad ? (c(), l("span",
|
|
5423
|
+
Ea,
|
|
5424
|
+
e.microsoftSSOLoad ? (c(), l("span", qa)) : (c(), l("span", xa, p(e.ssoLang[e.appLanguage].sign_in_with) + " SSO", 1))
|
|
5429
5425
|
])),
|
|
5430
5426
|
e.displayMicrosoftSSOLogin ? (c(), l("a", {
|
|
5431
5427
|
key: 7,
|
|
5432
|
-
onClick: a[
|
|
5428
|
+
onClick: a[10] || (a[10] = (s) => e.microsoftLogin("sso")),
|
|
5433
5429
|
class: "button-center button button-90 google-button pointer"
|
|
5434
5430
|
}, [
|
|
5435
|
-
|
|
5436
|
-
e.microsoftSSOLoad ? (c(), l("span",
|
|
5431
|
+
Ma,
|
|
5432
|
+
e.microsoftSSOLoad ? (c(), l("span", Ra, p(e.ssoLang[e.appLanguage].sign_in_with) + " SSO", 1)) : (c(), l("span", Na))
|
|
5437
5433
|
])) : h("", !0),
|
|
5438
5434
|
r.displayFormLogin ? h("", !0) : (c(), l("a", {
|
|
5439
5435
|
key: 8,
|
|
5440
|
-
onClick: a[
|
|
5436
|
+
onClick: a[11] || (a[11] = (s) => i.emailLogin = !0),
|
|
5441
5437
|
class: "button-center button button-90 google-button pointer"
|
|
5442
5438
|
}, [
|
|
5443
|
-
|
|
5439
|
+
Va,
|
|
5444
5440
|
t("span", null, p(e.ssoLang[e.appLanguage].sign_in_with) + " Email", 1)
|
|
5445
5441
|
])),
|
|
5446
|
-
|
|
5447
|
-
t("p",
|
|
5442
|
+
Oa,
|
|
5443
|
+
t("p", Ba, [
|
|
5448
5444
|
f(p(e.ssoLang[e.appLanguage].terms_by_signing_in) + " ", 1),
|
|
5449
|
-
|
|
5450
|
-
t("a",
|
|
5445
|
+
Da,
|
|
5446
|
+
t("a", Ua, p(e.ssoLang[this.appLanguage].terms_of_service), 1),
|
|
5451
5447
|
f(" " + p(e.ssoLang[e.appLanguage].and) + " ", 1),
|
|
5452
|
-
t("a",
|
|
5448
|
+
t("a", Ka, p(e.ssoLang[this.appLanguage].privacy_policy), 1)
|
|
5453
5449
|
]),
|
|
5454
|
-
|
|
5450
|
+
$a,
|
|
5455
5451
|
n.isModal ? (c(), l("div", {
|
|
5456
5452
|
key: 10,
|
|
5457
5453
|
class: "page-login-links",
|
|
5458
|
-
onClick: a[
|
|
5454
|
+
onClick: a[12] || (a[12] = (...s) => r.createAccountModal && r.createAccountModal(...s))
|
|
5459
5455
|
}, [
|
|
5460
|
-
t("a",
|
|
5456
|
+
t("a", Qa, [
|
|
5461
5457
|
f(p(e.ssoLang[e.appLanguage].or) + " ", 1),
|
|
5462
|
-
|
|
5458
|
+
Ga,
|
|
5463
5459
|
f(" " + p(e.ssoLang[e.appLanguage].create_new_account), 1)
|
|
5464
5460
|
]),
|
|
5465
|
-
|
|
5466
|
-
])) : (c(), l("div",
|
|
5461
|
+
Wa
|
|
5462
|
+
])) : (c(), l("div", Ha, [
|
|
5467
5463
|
r.displayRegisterLogin ? (c(), P(u, {
|
|
5468
5464
|
key: 0,
|
|
5469
5465
|
class: "forgot float-right",
|
|
@@ -5484,11 +5480,11 @@ function Wa(e, a, n, o, i, r) {
|
|
|
5484
5480
|
]),
|
|
5485
5481
|
_: 1
|
|
5486
5482
|
})) : h("", !0),
|
|
5487
|
-
|
|
5483
|
+
Fa
|
|
5488
5484
|
]))
|
|
5489
5485
|
], 36);
|
|
5490
5486
|
}
|
|
5491
|
-
const fe = /* @__PURE__ */ T(aa, [["render",
|
|
5487
|
+
const fe = /* @__PURE__ */ T(aa, [["render", Xa]]), Ya = {
|
|
5492
5488
|
name: "AuthRegister",
|
|
5493
5489
|
mixins: [me, ge, he, F, z],
|
|
5494
5490
|
props: {
|
|
@@ -5555,76 +5551,76 @@ const fe = /* @__PURE__ */ T(aa, [["render", Wa]]), Xa = {
|
|
|
5555
5551
|
this.$storage.referral = e;
|
|
5556
5552
|
}
|
|
5557
5553
|
}
|
|
5558
|
-
},
|
|
5554
|
+
}, Za = /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
5559
5555
|
/* @__PURE__ */ t("img", {
|
|
5560
5556
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
5561
5557
|
class: "responsive-image",
|
|
5562
5558
|
style: { width: "35%" }
|
|
5563
5559
|
})
|
|
5564
|
-
], -1),
|
|
5565
|
-
|
|
5566
|
-
],
|
|
5560
|
+
], -1), Ja = [
|
|
5561
|
+
Za
|
|
5562
|
+
], en = {
|
|
5567
5563
|
class: "bold no-bottom center-text",
|
|
5568
5564
|
style: { "margin-top": "63px" }
|
|
5569
|
-
},
|
|
5565
|
+
}, an = { class: "half-bottom small-top center-text color-black" }, nn = { key: 0 }, tn = /* @__PURE__ */ t("br", null, null, -1), on = { key: 1 }, rn = { class: "page-login-field half-top" }, sn = /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
5570
5566
|
/* @__PURE__ */ t("img", {
|
|
5571
5567
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5572
5568
|
class: "responsive-image",
|
|
5573
5569
|
style: { width: "60%" }
|
|
5574
5570
|
})
|
|
5575
|
-
], -1),
|
|
5571
|
+
], -1), cn = ["placeholder"], ln = /* @__PURE__ */ t("em", null, null, -1), dn = { class: "page-login-field half-top" }, pn = /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
5576
5572
|
/* @__PURE__ */ t("img", {
|
|
5577
5573
|
src: "https://cdn.tapni.co/icons/user.png",
|
|
5578
5574
|
class: "responsive-image",
|
|
5579
5575
|
style: { width: "50%" }
|
|
5580
5576
|
})
|
|
5581
|
-
], -1),
|
|
5577
|
+
], -1), un = ["placeholder", "disabled"], _n = /* @__PURE__ */ t("em", null, null, -1), mn = { class: "page-login-field half-top half-bottom" }, gn = /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
5582
5578
|
/* @__PURE__ */ t("img", {
|
|
5583
5579
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
5584
5580
|
class: "responsive-image",
|
|
5585
5581
|
style: { width: "50%" }
|
|
5586
5582
|
})
|
|
5587
|
-
], -1),
|
|
5583
|
+
], -1), hn = ["type", "placeholder"], fn = {
|
|
5588
5584
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
5589
5585
|
class: "responsive-image password-reveal-icon"
|
|
5590
|
-
},
|
|
5586
|
+
}, vn = {
|
|
5591
5587
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
5592
5588
|
class: "responsive-image password-reveal-icon"
|
|
5593
|
-
},
|
|
5589
|
+
}, kn = {
|
|
5594
5590
|
type: "submit",
|
|
5595
5591
|
class: "button black-button google-button bg-tapni-grey pointer button-90 button-center uppercase button-rounded bold full-top"
|
|
5596
|
-
},
|
|
5592
|
+
}, bn = { key: 0 }, yn = {
|
|
5597
5593
|
key: 1,
|
|
5598
5594
|
class: "button--loading button__loader"
|
|
5599
|
-
},
|
|
5595
|
+
}, wn = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin half-top half-bottom" }, null, -1), zn = /* @__PURE__ */ t("img", {
|
|
5600
5596
|
src: "https://cdn.tapni.co/icons/apple-logo.png",
|
|
5601
5597
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
5602
|
-
}, null, -1),
|
|
5598
|
+
}, null, -1), Ln = { key: 0 }, Sn = {
|
|
5603
5599
|
key: 1,
|
|
5604
5600
|
class: "button--loading button__loader"
|
|
5605
|
-
},
|
|
5601
|
+
}, Cn = /* @__PURE__ */ t("img", {
|
|
5606
5602
|
src: "https://cdn.tapni.co/icons/g-logo.png",
|
|
5607
5603
|
style: { position: "absolute", "margin-left": "-9px", padding: "8px 0", height: "100%" }
|
|
5608
|
-
}, null, -1),
|
|
5604
|
+
}, null, -1), Tn = { key: 0 }, jn = {
|
|
5609
5605
|
key: 1,
|
|
5610
5606
|
class: "button--loading button__loader"
|
|
5611
|
-
},
|
|
5607
|
+
}, Pn = /* @__PURE__ */ t("img", {
|
|
5612
5608
|
src: "https://cdn.tapni.co/icons/facebook-blue.png",
|
|
5613
5609
|
style: { position: "absolute", "margin-left": "-10px", padding: "10px 0", height: "100%" }
|
|
5614
|
-
}, null, -1),
|
|
5610
|
+
}, null, -1), An = { key: 0 }, In = {
|
|
5615
5611
|
key: 1,
|
|
5616
5612
|
class: "button--loading button__loader"
|
|
5617
|
-
},
|
|
5613
|
+
}, En = /* @__PURE__ */ t("img", {
|
|
5618
5614
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5619
5615
|
style: { position: "absolute", "margin-left": "-8px", padding: "12px 0", height: "100%" }
|
|
5620
|
-
}, null, -1),
|
|
5616
|
+
}, null, -1), xn = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1), qn = { class: "close-text center-text half-top color-black" }, Mn = /* @__PURE__ */ t("br", null, null, -1), Rn = {
|
|
5621
5617
|
class: "",
|
|
5622
5618
|
href: "https://tapni.co/policies/terms-of-service"
|
|
5623
|
-
},
|
|
5619
|
+
}, Nn = { href: "https://tapni.co/policies/privacy-policy" }, Vn = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1), On = {
|
|
5624
5620
|
key: 5,
|
|
5625
5621
|
class: "page-login-links"
|
|
5626
|
-
},
|
|
5627
|
-
function
|
|
5622
|
+
}, Bn = /* @__PURE__ */ t("div", { class: "clear" }, null, -1), Dn = { class: "forgot center-text pointer small-top" }, Un = /* @__PURE__ */ t("br", null, null, -1), Kn = /* @__PURE__ */ t("div", { class: "clear" }, null, -1);
|
|
5623
|
+
function $n(e, a, n, o, i, r) {
|
|
5628
5624
|
const u = V("router-link");
|
|
5629
5625
|
return c(), l("form", {
|
|
5630
5626
|
class: "page-login content-boxed content-boxed-padding",
|
|
@@ -5637,17 +5633,17 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5637
5633
|
onClick: a[0] || (a[0] = (...s) => r.close && r.close(...s)),
|
|
5638
5634
|
class: "color-black pull-right pointer",
|
|
5639
5635
|
style: { "margin-top": "0px", position: "absolute", right: "-20px", "text-align": "right" }
|
|
5640
|
-
},
|
|
5641
|
-
t("h1",
|
|
5642
|
-
t("p",
|
|
5643
|
-
i.usernameRegister ? (c(), l("span",
|
|
5636
|
+
}, Ja)) : h("", !0),
|
|
5637
|
+
t("h1", en, p(e.ssoLang[this.appLanguage].register), 1),
|
|
5638
|
+
t("p", an, [
|
|
5639
|
+
i.usernameRegister ? (c(), l("span", nn, [
|
|
5644
5640
|
f(" t.link/" + p(i.username) + " " + p(e.ssoLang[this.appLanguage].username_is_free) + " ✅ ", 1),
|
|
5645
|
-
|
|
5641
|
+
tn
|
|
5646
5642
|
])) : h("", !0)
|
|
5647
5643
|
]),
|
|
5648
|
-
i.emailLogin ? (c(), l("span",
|
|
5649
|
-
t("div",
|
|
5650
|
-
|
|
5644
|
+
i.emailLogin ? (c(), l("span", on, [
|
|
5645
|
+
t("div", rn, [
|
|
5646
|
+
sn,
|
|
5651
5647
|
k(t("input", {
|
|
5652
5648
|
"onUpdate:modelValue": a[1] || (a[1] = (s) => i.email = s),
|
|
5653
5649
|
onKeydown: a[2] || (a[2] = E(w(() => {
|
|
@@ -5656,13 +5652,13 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5656
5652
|
placeholder: e.ssoLang[this.appLanguage].email,
|
|
5657
5653
|
name: "email",
|
|
5658
5654
|
required: ""
|
|
5659
|
-
}, null, 40,
|
|
5655
|
+
}, null, 40, cn), [
|
|
5660
5656
|
[x, i.email]
|
|
5661
5657
|
]),
|
|
5662
|
-
|
|
5658
|
+
ln
|
|
5663
5659
|
]),
|
|
5664
|
-
t("div",
|
|
5665
|
-
|
|
5660
|
+
t("div", dn, [
|
|
5661
|
+
pn,
|
|
5666
5662
|
k(t("input", {
|
|
5667
5663
|
"onUpdate:modelValue": a[3] || (a[3] = (s) => i.username = s),
|
|
5668
5664
|
onKeydown: a[4] || (a[4] = E(w(() => {
|
|
@@ -5676,13 +5672,13 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5676
5672
|
required: "",
|
|
5677
5673
|
disabled: i.usernameRegister,
|
|
5678
5674
|
class: b({ "input-disabled": i.usernameRegister })
|
|
5679
|
-
}, null, 42,
|
|
5675
|
+
}, null, 42, un), [
|
|
5680
5676
|
[x, i.username]
|
|
5681
5677
|
]),
|
|
5682
|
-
|
|
5678
|
+
_n
|
|
5683
5679
|
]),
|
|
5684
|
-
t("div",
|
|
5685
|
-
|
|
5680
|
+
t("div", mn, [
|
|
5681
|
+
gn,
|
|
5686
5682
|
k(t("input", {
|
|
5687
5683
|
"onUpdate:modelValue": a[5] || (a[5] = (s) => i.password = s),
|
|
5688
5684
|
type: i.revealPassword ? "text" : "password",
|
|
@@ -5690,78 +5686,78 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5690
5686
|
name: "password",
|
|
5691
5687
|
required: "",
|
|
5692
5688
|
minlength: "8"
|
|
5693
|
-
}, null, 8,
|
|
5689
|
+
}, null, 8, hn), [
|
|
5694
5690
|
[K, i.password]
|
|
5695
5691
|
]),
|
|
5696
5692
|
t("em", {
|
|
5697
5693
|
onClick: a[6] || (a[6] = (s) => i.revealPassword = !i.revealPassword),
|
|
5698
5694
|
class: "pointer"
|
|
5699
5695
|
}, [
|
|
5700
|
-
k(t("img",
|
|
5696
|
+
k(t("img", fn, null, 512), [
|
|
5701
5697
|
[I, !i.revealPassword]
|
|
5702
5698
|
]),
|
|
5703
|
-
k(t("img",
|
|
5699
|
+
k(t("img", vn, null, 512), [
|
|
5704
5700
|
[I, i.revealPassword]
|
|
5705
5701
|
])
|
|
5706
5702
|
])
|
|
5707
5703
|
]),
|
|
5708
|
-
t("button",
|
|
5709
|
-
i.submitted ? (c(), l("span",
|
|
5704
|
+
t("button", kn, [
|
|
5705
|
+
i.submitted ? (c(), l("span", yn)) : (c(), l("span", bn, p(i.formButtonText), 1))
|
|
5710
5706
|
])
|
|
5711
5707
|
])) : h("", !0),
|
|
5712
|
-
|
|
5708
|
+
wn,
|
|
5713
5709
|
e.displayAppleLogin ? (c(), l("a", {
|
|
5714
5710
|
key: 2,
|
|
5715
5711
|
onClick: a[7] || (a[7] = (...s) => e.appleLogin && e.appleLogin(...s)),
|
|
5716
5712
|
class: "button-center button button-90 google-button pointer"
|
|
5717
5713
|
}, [
|
|
5718
|
-
|
|
5719
|
-
e.appleLoad ? (c(), l("span",
|
|
5714
|
+
zn,
|
|
5715
|
+
e.appleLoad ? (c(), l("span", Sn)) : (c(), l("span", Ln, p(e.ssoLang[this.appLanguage].sign_up_with) + " Apple", 1))
|
|
5720
5716
|
])) : h("", !0),
|
|
5721
5717
|
t("a", {
|
|
5722
5718
|
onClick: a[8] || (a[8] = (...s) => e.googleLogin && e.googleLogin(...s)),
|
|
5723
5719
|
class: "button-center button button-90 google-button pointer"
|
|
5724
5720
|
}, [
|
|
5725
|
-
|
|
5726
|
-
e.googleLoad ? (c(), l("span",
|
|
5721
|
+
Cn,
|
|
5722
|
+
e.googleLoad ? (c(), l("span", jn)) : (c(), l("span", Tn, p(e.ssoLang[this.appLanguage].sign_up_with) + " Google", 1))
|
|
5727
5723
|
]),
|
|
5728
5724
|
e.displayFacebookLogin ? (c(), l("a", {
|
|
5729
5725
|
key: 3,
|
|
5730
5726
|
onClick: a[9] || (a[9] = (...s) => e.facebookLogin && e.facebookLogin(...s)),
|
|
5731
5727
|
class: "button-center button button-90 google-button pointer"
|
|
5732
5728
|
}, [
|
|
5733
|
-
|
|
5734
|
-
e.facebookLoad ? (c(), l("span",
|
|
5729
|
+
Pn,
|
|
5730
|
+
e.facebookLoad ? (c(), l("span", In)) : (c(), l("span", An, p(e.ssoLang[this.appLanguage].sign_up_with) + " Facebook", 1))
|
|
5735
5731
|
])) : h("", !0),
|
|
5736
5732
|
i.emailLogin ? h("", !0) : (c(), l("a", {
|
|
5737
5733
|
key: 4,
|
|
5738
5734
|
onClick: a[10] || (a[10] = (s) => i.emailLogin = !0),
|
|
5739
5735
|
class: "button-center button button-90 google-button pointer"
|
|
5740
5736
|
}, [
|
|
5741
|
-
|
|
5737
|
+
En,
|
|
5742
5738
|
t("span", null, p(e.ssoLang[this.appLanguage].sign_up_with) + " Email", 1)
|
|
5743
5739
|
])),
|
|
5744
|
-
|
|
5745
|
-
t("p",
|
|
5740
|
+
xn,
|
|
5741
|
+
t("p", qn, [
|
|
5746
5742
|
f(p(e.ssoLang[this.appLanguage].terms_by_registering) + " ", 1),
|
|
5747
|
-
|
|
5748
|
-
t("a",
|
|
5743
|
+
Mn,
|
|
5744
|
+
t("a", Rn, p(e.ssoLang[this.appLanguage].terms_of_service), 1),
|
|
5749
5745
|
f(" " + p(e.ssoLang[this.appLanguage].and) + " ", 1),
|
|
5750
|
-
t("a",
|
|
5746
|
+
t("a", Nn, p(e.ssoLang[this.appLanguage].privacy_policy), 1)
|
|
5751
5747
|
]),
|
|
5752
|
-
|
|
5748
|
+
Vn,
|
|
5753
5749
|
n.isModal ? (c(), l("div", {
|
|
5754
5750
|
key: 6,
|
|
5755
5751
|
class: "page-login-links",
|
|
5756
5752
|
onClick: a[11] || (a[11] = (...s) => r.loginAccountModal && r.loginAccountModal(...s))
|
|
5757
5753
|
}, [
|
|
5758
|
-
t("a",
|
|
5754
|
+
t("a", Dn, [
|
|
5759
5755
|
f(p(e.ssoLang[this.appLanguage].or) + " ", 1),
|
|
5760
|
-
|
|
5756
|
+
Un,
|
|
5761
5757
|
f(" " + p(e.ssoLang[this.appLanguage].sign_in_with_new), 1)
|
|
5762
5758
|
]),
|
|
5763
|
-
|
|
5764
|
-
])) : (c(), l("div",
|
|
5759
|
+
Kn
|
|
5760
|
+
])) : (c(), l("div", On, [
|
|
5765
5761
|
v(u, {
|
|
5766
5762
|
class: "create float-right",
|
|
5767
5763
|
to: "/verify"
|
|
@@ -5780,11 +5776,11 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5780
5776
|
]),
|
|
5781
5777
|
_: 1
|
|
5782
5778
|
}),
|
|
5783
|
-
|
|
5779
|
+
Bn
|
|
5784
5780
|
]))
|
|
5785
5781
|
], 36);
|
|
5786
5782
|
}
|
|
5787
|
-
const ve = /* @__PURE__ */ T(
|
|
5783
|
+
const ve = /* @__PURE__ */ T(Ya, [["render", $n]]), Hn = {
|
|
5788
5784
|
name: "AuthVerify",
|
|
5789
5785
|
mixins: [z],
|
|
5790
5786
|
props: {
|
|
@@ -5847,43 +5843,43 @@ const ve = /* @__PURE__ */ T(Xa, [["render", Kn]]), $n = {
|
|
|
5847
5843
|
deep: !0
|
|
5848
5844
|
}
|
|
5849
5845
|
}
|
|
5850
|
-
}, C = (e) => (O("data-v-a80e9eb1"), e = e(), B(), e),
|
|
5846
|
+
}, C = (e) => (O("data-v-a80e9eb1"), e = e(), B(), e), Fn = /* @__PURE__ */ C(() => /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
5851
5847
|
/* @__PURE__ */ t("img", {
|
|
5852
5848
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
5853
5849
|
class: "responsive-image",
|
|
5854
5850
|
style: { width: "35%" }
|
|
5855
5851
|
})
|
|
5856
|
-
], -1)),
|
|
5857
|
-
|
|
5858
|
-
],
|
|
5852
|
+
], -1)), Qn = [
|
|
5853
|
+
Fn
|
|
5854
|
+
], Gn = {
|
|
5859
5855
|
class: "bold no-bottom center-text",
|
|
5860
5856
|
style: { "margin-top": "63px" }
|
|
5861
|
-
},
|
|
5857
|
+
}, Wn = /* @__PURE__ */ C(() => /* @__PURE__ */ t("p", { class: "half-bottom half-top center-text color-black" }, null, -1)), Xn = { class: "page-login-field half-top" }, Yn = /* @__PURE__ */ C(() => /* @__PURE__ */ t("i", { style: { "padding-top": "15px", "margin-left": "10px" } }, [
|
|
5862
5858
|
/* @__PURE__ */ t("img", {
|
|
5863
5859
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5864
5860
|
class: "responsive-image",
|
|
5865
5861
|
style: { width: "80%" }
|
|
5866
5862
|
})
|
|
5867
|
-
], -1)),
|
|
5863
|
+
], -1)), Zn = ["placeholder"], Jn = /* @__PURE__ */ C(() => /* @__PURE__ */ t("em", null, null, -1)), et = { class: "page-login-field half-top" }, at = /* @__PURE__ */ C(() => /* @__PURE__ */ t("i", { style: { "padding-top": "15px", "margin-left": "10px" } }, [
|
|
5868
5864
|
/* @__PURE__ */ t("img", {
|
|
5869
5865
|
src: "https://cdn.tapni.co/icons/password2.png",
|
|
5870
5866
|
class: "responsive-image",
|
|
5871
5867
|
style: { width: "100%" }
|
|
5872
5868
|
})
|
|
5873
|
-
], -1)),
|
|
5869
|
+
], -1)), nt = ["placeholder"], tt = /* @__PURE__ */ C(() => /* @__PURE__ */ t("em", null, null, -1)), it = {
|
|
5874
5870
|
type: "submit",
|
|
5875
5871
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
5876
|
-
},
|
|
5872
|
+
}, ot = {
|
|
5877
5873
|
key: 0,
|
|
5878
5874
|
class: "uppercase"
|
|
5879
|
-
},
|
|
5875
|
+
}, rt = {
|
|
5880
5876
|
key: 1,
|
|
5881
5877
|
class: "button--loading button__loader"
|
|
5882
|
-
},
|
|
5878
|
+
}, st = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1)), ct = { class: "close-text center-text half-top color-black" }, lt = ["innerHTML"], dt = /* @__PURE__ */ C(() => /* @__PURE__ */ t("a", { href: "mailto:support@tapni.co?subject=Email Verification" }, " support@tapni.co", -1)), pt = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1)), ut = {
|
|
5883
5879
|
key: 1,
|
|
5884
5880
|
class: "page-login-links"
|
|
5885
|
-
},
|
|
5886
|
-
function
|
|
5881
|
+
}, _t = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "clear" }, null, -1)), mt = { class: "forgot center-text pointer small-top" }, gt = /* @__PURE__ */ C(() => /* @__PURE__ */ t("br", null, null, -1)), ht = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "clear" }, null, -1));
|
|
5882
|
+
function ft(e, a, n, o, i, r) {
|
|
5887
5883
|
const u = V("router-link");
|
|
5888
5884
|
return c(), l("form", {
|
|
5889
5885
|
class: "page-login content-boxed content-boxed-padding",
|
|
@@ -5895,11 +5891,11 @@ function ht(e, a, n, o, i, r) {
|
|
|
5895
5891
|
onClick: a[0] || (a[0] = (...s) => r.close && r.close(...s)),
|
|
5896
5892
|
class: "color-black pull-right pointer",
|
|
5897
5893
|
style: { "margin-top": "0px", position: "absolute", right: "-20px", "text-align": "right" }
|
|
5898
|
-
},
|
|
5899
|
-
t("h1",
|
|
5900
|
-
|
|
5901
|
-
t("div",
|
|
5902
|
-
|
|
5894
|
+
}, Qn)) : h("", !0),
|
|
5895
|
+
t("h1", Gn, p(e.ssoLang[this.appLanguage].verify_account), 1),
|
|
5896
|
+
Wn,
|
|
5897
|
+
t("div", Xn, [
|
|
5898
|
+
Yn,
|
|
5903
5899
|
k(t("input", {
|
|
5904
5900
|
id: "emailInput",
|
|
5905
5901
|
"onUpdate:modelValue": a[1] || (a[1] = (s) => i.email = s),
|
|
@@ -5908,13 +5904,13 @@ function ht(e, a, n, o, i, r) {
|
|
|
5908
5904
|
type: "email",
|
|
5909
5905
|
placeholder: e.ssoLang[this.appLanguage].email,
|
|
5910
5906
|
required: ""
|
|
5911
|
-
}, null, 40,
|
|
5907
|
+
}, null, 40, Zn), [
|
|
5912
5908
|
[x, i.email]
|
|
5913
5909
|
]),
|
|
5914
|
-
|
|
5910
|
+
Jn
|
|
5915
5911
|
]),
|
|
5916
|
-
t("div",
|
|
5917
|
-
|
|
5912
|
+
t("div", et, [
|
|
5913
|
+
at,
|
|
5918
5914
|
k(t("input", {
|
|
5919
5915
|
id: "codeInput",
|
|
5920
5916
|
"onUpdate:modelValue": a[3] || (a[3] = (s) => i.code = s),
|
|
@@ -5923,34 +5919,34 @@ function ht(e, a, n, o, i, r) {
|
|
|
5923
5919
|
type: "tel",
|
|
5924
5920
|
placeholder: e.ssoLang[this.appLanguage].code,
|
|
5925
5921
|
required: ""
|
|
5926
|
-
}, null, 40,
|
|
5922
|
+
}, null, 40, nt), [
|
|
5927
5923
|
[x, i.code]
|
|
5928
5924
|
]),
|
|
5929
|
-
|
|
5925
|
+
tt
|
|
5930
5926
|
]),
|
|
5931
|
-
t("button",
|
|
5932
|
-
i.submitted ? (c(), l("span",
|
|
5927
|
+
t("button", it, [
|
|
5928
|
+
i.submitted ? (c(), l("span", rt)) : (c(), l("span", ot, p(e.ssoLang[this.appLanguage].verify_account), 1))
|
|
5933
5929
|
]),
|
|
5934
|
-
|
|
5935
|
-
t("p",
|
|
5930
|
+
st,
|
|
5931
|
+
t("p", ct, [
|
|
5936
5932
|
t("span", {
|
|
5937
5933
|
innerHTML: e.ssoLang[this.appLanguage].verify_account_p1
|
|
5938
|
-
}, null, 8,
|
|
5939
|
-
|
|
5934
|
+
}, null, 8, lt),
|
|
5935
|
+
dt
|
|
5940
5936
|
]),
|
|
5941
|
-
|
|
5937
|
+
pt,
|
|
5942
5938
|
n.isModal ? (c(), l("div", {
|
|
5943
5939
|
key: 2,
|
|
5944
5940
|
class: "page-login-links",
|
|
5945
5941
|
onClick: a[5] || (a[5] = (...s) => r.registerAccountModal && r.registerAccountModal(...s))
|
|
5946
5942
|
}, [
|
|
5947
|
-
t("a",
|
|
5943
|
+
t("a", mt, [
|
|
5948
5944
|
f(p(e.ssoLang[this.appLanguage].or) + " ", 1),
|
|
5949
|
-
|
|
5945
|
+
gt,
|
|
5950
5946
|
f(" " + p(e.ssoLang[this.appLanguage].create_new_account), 1)
|
|
5951
5947
|
]),
|
|
5952
|
-
|
|
5953
|
-
])) : (c(), l("div",
|
|
5948
|
+
ht
|
|
5949
|
+
])) : (c(), l("div", ut, [
|
|
5954
5950
|
v(u, {
|
|
5955
5951
|
class: "create float-right",
|
|
5956
5952
|
to: "/register"
|
|
@@ -5969,11 +5965,11 @@ function ht(e, a, n, o, i, r) {
|
|
|
5969
5965
|
]),
|
|
5970
5966
|
_: 1
|
|
5971
5967
|
}),
|
|
5972
|
-
|
|
5968
|
+
_t
|
|
5973
5969
|
]))
|
|
5974
5970
|
], 36);
|
|
5975
5971
|
}
|
|
5976
|
-
const ke = /* @__PURE__ */ T(
|
|
5972
|
+
const ke = /* @__PURE__ */ T(Hn, [["render", ft], ["__scopeId", "data-v-a80e9eb1"]]), vt = {
|
|
5977
5973
|
name: "AuthReset",
|
|
5978
5974
|
mixins: [z],
|
|
5979
5975
|
data() {
|
|
@@ -6027,124 +6023,124 @@ const ke = /* @__PURE__ */ T($n, [["render", ht], ["__scopeId", "data-v-a80e9eb1
|
|
|
6027
6023
|
this.$storage.verifyEmail = e;
|
|
6028
6024
|
}
|
|
6029
6025
|
}
|
|
6030
|
-
}, A = (e) => (O("data-v-7eff2bb3"), e = e(), B(), e),
|
|
6026
|
+
}, A = (e) => (O("data-v-7eff2bb3"), e = e(), B(), e), kt = {
|
|
6031
6027
|
class: "bold no-bottom center-text",
|
|
6032
6028
|
style: { "margin-top": "63px" }
|
|
6033
|
-
},
|
|
6029
|
+
}, bt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("p", { class: "half-bottom small-top center-text color-black" }, null, -1)), yt = { class: "page-login-field half-top color-black" }, wt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("i", { style: { "padding-top": "15px", "margin-left": "10px" } }, [
|
|
6034
6030
|
/* @__PURE__ */ t("img", {
|
|
6035
6031
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
6036
6032
|
class: "responsive-image",
|
|
6037
6033
|
style: { width: "80%" }
|
|
6038
6034
|
})
|
|
6039
|
-
], -1)),
|
|
6035
|
+
], -1)), zt = ["placeholder"], Lt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("em", null, null, -1)), St = {
|
|
6040
6036
|
type: "submit",
|
|
6041
6037
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
6042
|
-
},
|
|
6038
|
+
}, Ct = {
|
|
6043
6039
|
key: 0,
|
|
6044
6040
|
class: "uppercase"
|
|
6045
|
-
},
|
|
6041
|
+
}, Tt = {
|
|
6046
6042
|
key: 1,
|
|
6047
6043
|
class: "button--loading button__loader"
|
|
6048
|
-
},
|
|
6044
|
+
}, jt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom half-top" }, null, -1)), Pt = { class: "close-text center-text half-top color-black" }, At = ["innerHTML"], It = ["href"], Et = /* @__PURE__ */ A(() => /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom half-top" }, null, -1)), xt = { class: "page-login-links" }, qt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("div", { class: "clear" }, null, -1)), Mt = {
|
|
6049
6045
|
class: "bold no-bottom center-text",
|
|
6050
6046
|
style: { "margin-top": "63px" }
|
|
6051
|
-
},
|
|
6047
|
+
}, Rt = { class: "half-bottom small-top center-text color-black" }, Nt = { class: "page-login-field half-top" }, Vt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
6052
6048
|
/* @__PURE__ */ t("img", {
|
|
6053
6049
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
6054
6050
|
class: "responsive-image",
|
|
6055
6051
|
style: { width: "50%" }
|
|
6056
6052
|
})
|
|
6057
|
-
], -1)),
|
|
6053
|
+
], -1)), Ot = ["type", "placeholder"], Bt = {
|
|
6058
6054
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
6059
6055
|
class: "responsive-image password-reveal-icon"
|
|
6060
|
-
},
|
|
6056
|
+
}, Dt = {
|
|
6061
6057
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
6062
6058
|
class: "responsive-image password-reveal-icon"
|
|
6063
|
-
},
|
|
6059
|
+
}, Ut = { class: "page-login-field half-top" }, Kt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
6064
6060
|
/* @__PURE__ */ t("img", {
|
|
6065
6061
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
6066
6062
|
class: "responsive-image",
|
|
6067
6063
|
style: { width: "50%" }
|
|
6068
6064
|
})
|
|
6069
|
-
], -1)),
|
|
6065
|
+
], -1)), $t = ["type", "placeholder"], Ht = {
|
|
6070
6066
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
6071
6067
|
class: "responsive-image password-reveal-icon"
|
|
6072
|
-
},
|
|
6068
|
+
}, Ft = {
|
|
6073
6069
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
6074
6070
|
class: "responsive-image password-reveal-icon"
|
|
6075
|
-
},
|
|
6071
|
+
}, Qt = {
|
|
6076
6072
|
type: "submit",
|
|
6077
6073
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
6078
|
-
},
|
|
6074
|
+
}, Gt = {
|
|
6079
6075
|
key: 0,
|
|
6080
6076
|
class: "uppercase"
|
|
6081
|
-
},
|
|
6077
|
+
}, Wt = {
|
|
6082
6078
|
key: 1,
|
|
6083
6079
|
class: "button--loading button__loader"
|
|
6084
|
-
},
|
|
6085
|
-
function
|
|
6080
|
+
}, Xt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom half-top" }, null, -1)), Yt = { class: "close-text center-text half-top color-black" }, Zt = ["innerHTML"], Jt = ["href"];
|
|
6081
|
+
function ei(e, a, n, o, i, r) {
|
|
6086
6082
|
const u = V("router-link");
|
|
6087
6083
|
return i.passwordChange ? (c(), l("form", {
|
|
6088
6084
|
key: 1,
|
|
6089
6085
|
class: "page-login content-boxed content-boxed-padding",
|
|
6090
6086
|
onSubmit: a[7] || (a[7] = w((...s) => r.changePw && r.changePw(...s), ["prevent"]))
|
|
6091
6087
|
}, [
|
|
6092
|
-
t("h3",
|
|
6093
|
-
t("p",
|
|
6094
|
-
t("div",
|
|
6095
|
-
|
|
6088
|
+
t("h3", Mt, p(e.ssoLang[this.appLanguage].password_change), 1),
|
|
6089
|
+
t("p", Rt, p(e.ssoLang[this.appLanguage].password_new), 1),
|
|
6090
|
+
t("div", Nt, [
|
|
6091
|
+
Vt,
|
|
6096
6092
|
k(t("input", {
|
|
6097
6093
|
"onUpdate:modelValue": a[3] || (a[3] = (s) => i.password = s),
|
|
6098
6094
|
type: i.revealPassword ? "text" : "password",
|
|
6099
6095
|
placeholder: e.ssoLang[this.appLanguage].password,
|
|
6100
6096
|
required: ""
|
|
6101
|
-
}, null, 8,
|
|
6097
|
+
}, null, 8, Ot), [
|
|
6102
6098
|
[K, i.password]
|
|
6103
6099
|
]),
|
|
6104
6100
|
t("em", {
|
|
6105
6101
|
onClick: a[4] || (a[4] = (s) => i.revealPassword = !i.revealPassword)
|
|
6106
6102
|
}, [
|
|
6107
|
-
k(t("img",
|
|
6103
|
+
k(t("img", Bt, null, 512), [
|
|
6108
6104
|
[I, !i.revealPassword]
|
|
6109
6105
|
]),
|
|
6110
|
-
k(t("img",
|
|
6106
|
+
k(t("img", Dt, null, 512), [
|
|
6111
6107
|
[I, i.revealPassword]
|
|
6112
6108
|
])
|
|
6113
6109
|
])
|
|
6114
6110
|
]),
|
|
6115
|
-
t("div",
|
|
6116
|
-
|
|
6111
|
+
t("div", Ut, [
|
|
6112
|
+
Kt,
|
|
6117
6113
|
k(t("input", {
|
|
6118
6114
|
"onUpdate:modelValue": a[5] || (a[5] = (s) => i.passwordRepeat = s),
|
|
6119
6115
|
type: i.revealPassword2 ? "text" : "password",
|
|
6120
6116
|
placeholder: e.ssoLang[this.appLanguage].password_repeat,
|
|
6121
6117
|
required: ""
|
|
6122
|
-
}, null, 8,
|
|
6118
|
+
}, null, 8, $t), [
|
|
6123
6119
|
[K, i.passwordRepeat]
|
|
6124
6120
|
]),
|
|
6125
6121
|
t("em", {
|
|
6126
6122
|
onClick: a[6] || (a[6] = (s) => i.revealPassword2 = !i.revealPassword2)
|
|
6127
6123
|
}, [
|
|
6128
|
-
k(t("img",
|
|
6124
|
+
k(t("img", Ht, null, 512), [
|
|
6129
6125
|
[I, !i.revealPassword2]
|
|
6130
6126
|
]),
|
|
6131
|
-
k(t("img",
|
|
6127
|
+
k(t("img", Ft, null, 512), [
|
|
6132
6128
|
[I, i.revealPassword2]
|
|
6133
6129
|
])
|
|
6134
6130
|
])
|
|
6135
6131
|
]),
|
|
6136
|
-
t("button",
|
|
6137
|
-
i.submitted ? (c(), l("span",
|
|
6132
|
+
t("button", Qt, [
|
|
6133
|
+
i.submitted ? (c(), l("span", Wt)) : (c(), l("span", Gt, p(e.ssoLang[this.appLanguage].password_change), 1))
|
|
6138
6134
|
]),
|
|
6139
|
-
|
|
6140
|
-
t("p",
|
|
6135
|
+
Xt,
|
|
6136
|
+
t("p", Yt, [
|
|
6141
6137
|
t("span", {
|
|
6142
6138
|
innerHTML: e.ssoLang[this.appLanguage].reset_password_p2
|
|
6143
|
-
}, null, 8,
|
|
6139
|
+
}, null, 8, Zt),
|
|
6144
6140
|
f(),
|
|
6145
6141
|
t("a", {
|
|
6146
6142
|
href: "mailto:support@tapni.co?subject=" + e.ssoLang[this.appLanguage].password_reset_t
|
|
6147
|
-
}, " support@tapni.co", 8,
|
|
6143
|
+
}, " support@tapni.co", 8, Jt)
|
|
6148
6144
|
])
|
|
6149
6145
|
], 32)) : (c(), l("form", {
|
|
6150
6146
|
key: 0,
|
|
@@ -6152,10 +6148,10 @@ function Jt(e, a, n, o, i, r) {
|
|
|
6152
6148
|
onSubmit: a[2] || (a[2] = w((...s) => r.resetEmail && r.resetEmail(...s), ["prevent"])),
|
|
6153
6149
|
autocomplete: "on"
|
|
6154
6150
|
}, [
|
|
6155
|
-
t("h3",
|
|
6156
|
-
|
|
6157
|
-
t("div",
|
|
6158
|
-
|
|
6151
|
+
t("h3", kt, p(e.ssoLang[this.appLanguage].reset_password), 1),
|
|
6152
|
+
bt,
|
|
6153
|
+
t("div", yt, [
|
|
6154
|
+
wt,
|
|
6159
6155
|
k(t("input", {
|
|
6160
6156
|
id: "emailInput",
|
|
6161
6157
|
"onUpdate:modelValue": a[0] || (a[0] = (s) => i.email = s),
|
|
@@ -6164,25 +6160,25 @@ function Jt(e, a, n, o, i, r) {
|
|
|
6164
6160
|
type: "email",
|
|
6165
6161
|
placeholder: e.ssoLang[this.appLanguage].email,
|
|
6166
6162
|
required: ""
|
|
6167
|
-
}, null, 40,
|
|
6163
|
+
}, null, 40, zt), [
|
|
6168
6164
|
[x, i.email]
|
|
6169
6165
|
]),
|
|
6170
|
-
|
|
6166
|
+
Lt
|
|
6171
6167
|
]),
|
|
6172
|
-
t("button",
|
|
6173
|
-
i.submitted ? (c(), l("span",
|
|
6168
|
+
t("button", St, [
|
|
6169
|
+
i.submitted ? (c(), l("span", Tt)) : (c(), l("span", Ct, p(e.ssoLang[this.appLanguage].reset_password), 1))
|
|
6174
6170
|
]),
|
|
6175
|
-
|
|
6176
|
-
t("p",
|
|
6171
|
+
jt,
|
|
6172
|
+
t("p", Pt, [
|
|
6177
6173
|
t("span", {
|
|
6178
6174
|
innerHTML: e.ssoLang[this.appLanguage].reset_password_p1
|
|
6179
|
-
}, null, 8,
|
|
6175
|
+
}, null, 8, At),
|
|
6180
6176
|
t("a", {
|
|
6181
6177
|
href: "mailto:support@tapni.co?subject=" + e.ssoLang[this.appLanguage].password_reset_t
|
|
6182
|
-
}, " support@tapni.co", 8,
|
|
6178
|
+
}, " support@tapni.co", 8, It)
|
|
6183
6179
|
]),
|
|
6184
|
-
|
|
6185
|
-
t("div",
|
|
6180
|
+
Et,
|
|
6181
|
+
t("div", xt, [
|
|
6186
6182
|
v(u, {
|
|
6187
6183
|
class: "create float-right",
|
|
6188
6184
|
to: "/verify"
|
|
@@ -6201,11 +6197,11 @@ function Jt(e, a, n, o, i, r) {
|
|
|
6201
6197
|
]),
|
|
6202
6198
|
_: 1
|
|
6203
6199
|
}),
|
|
6204
|
-
|
|
6200
|
+
qt
|
|
6205
6201
|
])
|
|
6206
6202
|
], 32));
|
|
6207
6203
|
}
|
|
6208
|
-
const be = /* @__PURE__ */ T(
|
|
6204
|
+
const be = /* @__PURE__ */ T(vt, [["render", ei], ["__scopeId", "data-v-7eff2bb3"]]), ai = {
|
|
6209
6205
|
name: "AuthCallback",
|
|
6210
6206
|
mixins: [Q, G, z],
|
|
6211
6207
|
data() {
|
|
@@ -6225,28 +6221,28 @@ const be = /* @__PURE__ */ T(ft, [["render", Jt], ["__scopeId", "data-v-7eff2bb3
|
|
|
6225
6221
|
return e = e.replace("http", "tapni"), e = e.replace("https", "tapni"), window.open(e);
|
|
6226
6222
|
}
|
|
6227
6223
|
}
|
|
6228
|
-
},
|
|
6224
|
+
}, ni = {
|
|
6229
6225
|
key: 0,
|
|
6230
6226
|
style: { "text-align": "center", width: "80%", margin: "0 auto", "margin-top": "260px" }
|
|
6231
|
-
},
|
|
6227
|
+
}, ti = /* @__PURE__ */ t("br", null, null, -1), ii = {
|
|
6232
6228
|
key: 1,
|
|
6233
6229
|
style: { "text-align": "center", width: "80%", margin: "0 auto", "margin-top": "260px" }
|
|
6234
6230
|
};
|
|
6235
|
-
function
|
|
6231
|
+
function oi(e, a, n, o, i, r) {
|
|
6236
6232
|
return c(), l("div", null, [
|
|
6237
|
-
(e.$route.query.platform === "android" || e.$route.query.platform === "ios") && !e.isNative ? (c(), l("h5",
|
|
6233
|
+
(e.$route.query.platform === "android" || e.$route.query.platform === "ios") && !e.isNative ? (c(), l("h5", ni, [
|
|
6238
6234
|
f(p(e.ssoLang[this.appLanguage].you_will_be_redirected), 1),
|
|
6239
|
-
|
|
6235
|
+
ti,
|
|
6240
6236
|
f(" " + p(e.ssoLang[this.appLanguage].if_redirect_not_directly) + ", ", 1),
|
|
6241
6237
|
t("span", {
|
|
6242
6238
|
onClick: a[0] || (a[0] = (...u) => r.inAppRedirect && r.inAppRedirect(...u)),
|
|
6243
6239
|
style: { color: "blue", cursor: "pointer" }
|
|
6244
6240
|
}, p(e.ssoLang[this.appLanguage].click_here), 1),
|
|
6245
6241
|
f(".")
|
|
6246
|
-
])) : (c(), l("h4",
|
|
6242
|
+
])) : (c(), l("h4", ii, p(e.ssoLang[this.appLanguage].please_wait), 1))
|
|
6247
6243
|
]);
|
|
6248
6244
|
}
|
|
6249
|
-
const ye = /* @__PURE__ */ T(
|
|
6245
|
+
const ye = /* @__PURE__ */ T(ai, [["render", oi]]), ri = {
|
|
6250
6246
|
name: "ModalOverlay",
|
|
6251
6247
|
mixins: [z],
|
|
6252
6248
|
data() {
|
|
@@ -6271,13 +6267,13 @@ const ye = /* @__PURE__ */ T(ei, [["render", ii]]), oi = {
|
|
|
6271
6267
|
}
|
|
6272
6268
|
}
|
|
6273
6269
|
};
|
|
6274
|
-
function
|
|
6270
|
+
function si(e, a, n, o, i, r) {
|
|
6275
6271
|
return c(), l("div", {
|
|
6276
6272
|
class: b({ "pointer delete-menu": !0, "delete-menu-active": i.toggle }),
|
|
6277
6273
|
onClick: a[0] || (a[0] = (...u) => r.toggleEmit && r.toggleEmit(...u))
|
|
6278
6274
|
}, null, 2);
|
|
6279
6275
|
}
|
|
6280
|
-
const we = /* @__PURE__ */ T(
|
|
6276
|
+
const we = /* @__PURE__ */ T(ri, [["render", si], ["__scopeId", "data-v-a128c2fa"]]), ci = {
|
|
6281
6277
|
name: "SSO",
|
|
6282
6278
|
mixins: [F, Q, G, z],
|
|
6283
6279
|
data() {
|
|
@@ -6320,23 +6316,23 @@ const we = /* @__PURE__ */ T(oi, [["render", ri], ["__scopeId", "data-v-a128c2fa
|
|
|
6320
6316
|
this.toggle = !this.toggle;
|
|
6321
6317
|
}
|
|
6322
6318
|
}
|
|
6323
|
-
},
|
|
6319
|
+
}, li = (e) => (O("data-v-11f19a09"), e = e(), B(), e), di = /* @__PURE__ */ li(() => /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
6324
6320
|
/* @__PURE__ */ t("img", {
|
|
6325
6321
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
6326
6322
|
class: "responsive-image",
|
|
6327
6323
|
style: { width: "45%" }
|
|
6328
6324
|
})
|
|
6329
|
-
], -1)),
|
|
6330
|
-
|
|
6331
|
-
],
|
|
6325
|
+
], -1)), pi = [
|
|
6326
|
+
di
|
|
6327
|
+
], ui = { class: "bold center-text color-black half-top half-bottom" }, _i = ["placeholder"], mi = {
|
|
6332
6328
|
type: "submit",
|
|
6333
6329
|
class: "button black-button white-button button-full",
|
|
6334
6330
|
style: { margin: "0 auto", "margin-top": "25px", "margin-bottom": "30px" }
|
|
6335
|
-
},
|
|
6331
|
+
}, gi = { key: 0 }, hi = {
|
|
6336
6332
|
key: 1,
|
|
6337
6333
|
class: "button--loading button__loader"
|
|
6338
6334
|
};
|
|
6339
|
-
function
|
|
6335
|
+
function fi(e, a, n, o, i, r) {
|
|
6340
6336
|
return c(), l("form", {
|
|
6341
6337
|
onSubmit: a[3] || (a[3] = w((...u) => r.submit && r.submit(...u), ["prevent"])),
|
|
6342
6338
|
class: b(["menu-wrapper menu-light menu-modal center-text activate-page", { "active-menu": i.toggle }]),
|
|
@@ -6346,8 +6342,8 @@ function hi(e, a, n, o, i, r) {
|
|
|
6346
6342
|
onClick: a[0] || (a[0] = (...u) => r.forceClose && r.forceClose(...u)),
|
|
6347
6343
|
class: "color-black pull-right pointer",
|
|
6348
6344
|
style: { "margin-top": "5px", position: "absolute", right: "5px" }
|
|
6349
|
-
},
|
|
6350
|
-
t("h3",
|
|
6345
|
+
}, pi),
|
|
6346
|
+
t("h3", ui, p(e.ssoLang[e.appLanguage].enter_company_email), 1),
|
|
6351
6347
|
t("div", null, [
|
|
6352
6348
|
k(t("input", {
|
|
6353
6349
|
type: "text",
|
|
@@ -6362,16 +6358,16 @@ function hi(e, a, n, o, i, r) {
|
|
|
6362
6358
|
required: "",
|
|
6363
6359
|
onKeydown: a[2] || (a[2] = E(w(() => {
|
|
6364
6360
|
}, ["prevent"]), ["space"]))
|
|
6365
|
-
}, null, 40,
|
|
6361
|
+
}, null, 40, _i), [
|
|
6366
6362
|
[x, i.email]
|
|
6367
6363
|
])
|
|
6368
6364
|
]),
|
|
6369
|
-
t("button",
|
|
6370
|
-
i.loading ? (c(), l("span",
|
|
6365
|
+
t("button", mi, [
|
|
6366
|
+
i.loading ? (c(), l("span", hi)) : (c(), l("span", gi, p(e.ssoLang[e.appLanguage].continue), 1))
|
|
6371
6367
|
])
|
|
6372
6368
|
], 34);
|
|
6373
6369
|
}
|
|
6374
|
-
const ze = /* @__PURE__ */ T(
|
|
6370
|
+
const ze = /* @__PURE__ */ T(ci, [["render", fi], ["__scopeId", "data-v-11f19a09"]]), vi = {
|
|
6375
6371
|
name: "SSOPick",
|
|
6376
6372
|
mixins: [F, Q, G, z],
|
|
6377
6373
|
data() {
|
|
@@ -6406,34 +6402,34 @@ const ze = /* @__PURE__ */ T(si, [["render", hi], ["__scopeId", "data-v-11f19a09
|
|
|
6406
6402
|
this.azureLoad = !1, this.oktaLoad = !1, this.samlLoad = !1, this.sso = null, this.email = null, e && (this.sso = e.sso, this.email = e.email), this.toggle = !this.toggle;
|
|
6407
6403
|
}
|
|
6408
6404
|
}
|
|
6409
|
-
}, W = (e) => (O("data-v-4f821f65"), e = e(), B(), e),
|
|
6405
|
+
}, W = (e) => (O("data-v-4f821f65"), e = e(), B(), e), ki = /* @__PURE__ */ W(() => /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
6410
6406
|
/* @__PURE__ */ t("img", {
|
|
6411
6407
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
6412
6408
|
class: "responsive-image",
|
|
6413
6409
|
style: { width: "45%" }
|
|
6414
6410
|
})
|
|
6415
|
-
], -1)),
|
|
6416
|
-
|
|
6417
|
-
],
|
|
6411
|
+
], -1)), bi = [
|
|
6412
|
+
ki
|
|
6413
|
+
], yi = { class: "bold center-text color-black half-top half-bottom" }, wi = /* @__PURE__ */ W(() => /* @__PURE__ */ t("img", {
|
|
6418
6414
|
src: "https://cdn.tapni.co/icons/azure.png",
|
|
6419
6415
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
6420
|
-
}, null, -1)),
|
|
6416
|
+
}, null, -1)), zi = { key: 0 }, Li = {
|
|
6421
6417
|
key: 1,
|
|
6422
6418
|
class: "button--loading button__loader"
|
|
6423
|
-
},
|
|
6419
|
+
}, Si = /* @__PURE__ */ W(() => /* @__PURE__ */ t("img", {
|
|
6424
6420
|
src: "https://cdn.tapni.co/icons/okta.png",
|
|
6425
6421
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
6426
|
-
}, null, -1)),
|
|
6422
|
+
}, null, -1)), Ci = { key: 0 }, Ti = {
|
|
6427
6423
|
key: 1,
|
|
6428
6424
|
class: "button--loading button__loader"
|
|
6429
|
-
},
|
|
6425
|
+
}, ji = /* @__PURE__ */ W(() => /* @__PURE__ */ t("img", {
|
|
6430
6426
|
src: "https://cdn.tapni.co/icons/saml.png",
|
|
6431
6427
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
6432
|
-
}, null, -1)),
|
|
6428
|
+
}, null, -1)), Pi = { key: 0 }, Ai = {
|
|
6433
6429
|
key: 1,
|
|
6434
6430
|
class: "button--loading button__loader"
|
|
6435
6431
|
};
|
|
6436
|
-
function
|
|
6432
|
+
function Ii(e, a, n, o, i, r) {
|
|
6437
6433
|
var u, s, _;
|
|
6438
6434
|
return c(), l("form", {
|
|
6439
6435
|
onSubmit: a[4] || (a[4] = w(() => {
|
|
@@ -6445,35 +6441,35 @@ function Ai(e, a, n, o, i, r) {
|
|
|
6445
6441
|
onClick: a[0] || (a[0] = (...L) => r.forceClose && r.forceClose(...L)),
|
|
6446
6442
|
class: "color-black pull-right pointer",
|
|
6447
6443
|
style: { "margin-top": "5px", position: "absolute", right: "5px" }
|
|
6448
|
-
},
|
|
6449
|
-
t("h3",
|
|
6444
|
+
}, bi),
|
|
6445
|
+
t("h3", yi, p(e.ssoLang[e.appLanguage].select_sign_method), 1),
|
|
6450
6446
|
(u = i.sso) != null && u.azure ? (c(), l("a", {
|
|
6451
6447
|
key: 0,
|
|
6452
6448
|
onClick: a[1] || (a[1] = (L) => r.ssoLogin("azure")),
|
|
6453
6449
|
class: "button-center button black-button button-90 google-button pointer"
|
|
6454
6450
|
}, [
|
|
6455
|
-
|
|
6456
|
-
i.azureLoad ? (c(), l("span",
|
|
6451
|
+
wi,
|
|
6452
|
+
i.azureLoad ? (c(), l("span", Li)) : (c(), l("span", zi, p(e.ssoLang[e.appLanguage].sign_in_with) + " Azure", 1))
|
|
6457
6453
|
])) : h("", !0),
|
|
6458
6454
|
(s = i.sso) != null && s.okta ? (c(), l("a", {
|
|
6459
6455
|
key: 1,
|
|
6460
6456
|
onClick: a[2] || (a[2] = (L) => r.ssoLogin("okta")),
|
|
6461
6457
|
class: "button-center button black-button button-90 google-button pointer"
|
|
6462
6458
|
}, [
|
|
6463
|
-
|
|
6464
|
-
i.oktaLoad ? (c(), l("span",
|
|
6459
|
+
Si,
|
|
6460
|
+
i.oktaLoad ? (c(), l("span", Ti)) : (c(), l("span", Ci, p(e.ssoLang[e.appLanguage].sign_in_with) + " Okta", 1))
|
|
6465
6461
|
])) : h("", !0),
|
|
6466
6462
|
(_ = i.sso) != null && _.saml ? (c(), l("a", {
|
|
6467
6463
|
key: 2,
|
|
6468
6464
|
onClick: a[3] || (a[3] = (L) => r.ssoLogin("saml")),
|
|
6469
6465
|
class: "button-center button black-button button-90 google-button pointer"
|
|
6470
6466
|
}, [
|
|
6471
|
-
|
|
6472
|
-
i.samlLoad ? (c(), l("span",
|
|
6467
|
+
ji,
|
|
6468
|
+
i.samlLoad ? (c(), l("span", Ai)) : (c(), l("span", Pi, p(e.ssoLang[e.appLanguage].sign_in_with) + " SAML", 1))
|
|
6473
6469
|
])) : h("", !0)
|
|
6474
6470
|
], 34);
|
|
6475
6471
|
}
|
|
6476
|
-
const Le = /* @__PURE__ */ T(
|
|
6472
|
+
const Le = /* @__PURE__ */ T(vi, [["render", Ii], ["__scopeId", "data-v-4f821f65"]]), Ei = {
|
|
6477
6473
|
name: "LinkIcon",
|
|
6478
6474
|
mixins: [z],
|
|
6479
6475
|
props: {
|
|
@@ -6545,8 +6541,8 @@ const Le = /* @__PURE__ */ T(fi, [["render", Ai], ["__scopeId", "data-v-4f821f65
|
|
|
6545
6541
|
}
|
|
6546
6542
|
},
|
|
6547
6543
|
methods: {}
|
|
6548
|
-
},
|
|
6549
|
-
function
|
|
6544
|
+
}, xi = ["src", "alt"], qi = ["src", "alt"], Mi = ["src", "alt"], Ri = ["src", "alt"];
|
|
6545
|
+
function Ni(e, a, n, o, i, r) {
|
|
6550
6546
|
var u, s;
|
|
6551
6547
|
return c(), l("a", {
|
|
6552
6548
|
class: b(["disable-select", n.linkStyle + (n.disabled ? " opacity-50" : "")]),
|
|
@@ -6569,21 +6565,21 @@ function Ri(e, a, n, o, i, r) {
|
|
|
6569
6565
|
alt: n.data.text,
|
|
6570
6566
|
onLoad: a[0] || (a[0] = (_) => e.$emit("loaded")),
|
|
6571
6567
|
onError: a[1] || (a[1] = (_) => e.$emit("loaded"))
|
|
6572
|
-
}, null, 40,
|
|
6568
|
+
}, null, 40, xi)) : !n.data.custom_icon && n.data.type === "customlink" && n.linkAdding ? (c(), l("img", {
|
|
6573
6569
|
key: 1,
|
|
6574
6570
|
src: "https://cdn.tapni.co/icons/custom-icon-128.gif",
|
|
6575
6571
|
class: "responsive-image",
|
|
6576
6572
|
alt: n.data.text,
|
|
6577
6573
|
onLoad: a[2] || (a[2] = (_) => e.$emit("loaded")),
|
|
6578
6574
|
onError: a[3] || (a[3] = (_) => e.$emit("loaded"))
|
|
6579
|
-
}, null, 40,
|
|
6575
|
+
}, null, 40, qi)) : !n.data.custom_icon && n.data.type === "customlink" && !n.linkAdding ? (c(), l("img", {
|
|
6580
6576
|
key: 2,
|
|
6581
6577
|
src: "https://cdn.tapni.co/icons/customlink.png",
|
|
6582
6578
|
class: "responsive-image",
|
|
6583
6579
|
alt: n.data.text,
|
|
6584
6580
|
onLoad: a[4] || (a[4] = (_) => e.$emit("loaded")),
|
|
6585
6581
|
onError: a[5] || (a[5] = (_) => e.$emit("loaded"))
|
|
6586
|
-
}, null, 40,
|
|
6582
|
+
}, null, 40, Mi)) : (c(), l("img", {
|
|
6587
6583
|
key: 3,
|
|
6588
6584
|
src: n.data.style.custom_icon,
|
|
6589
6585
|
style: { "border-radius": "22.46%" },
|
|
@@ -6591,7 +6587,7 @@ function Ri(e, a, n, o, i, r) {
|
|
|
6591
6587
|
alt: n.data.text,
|
|
6592
6588
|
onLoad: a[6] || (a[6] = (_) => e.$emit("loaded")),
|
|
6593
6589
|
onError: a[7] || (a[7] = (_) => e.$emit("loaded"))
|
|
6594
|
-
}, null, 40,
|
|
6590
|
+
}, null, 40, Ri))
|
|
6595
6591
|
], 6),
|
|
6596
6592
|
t("span", {
|
|
6597
6593
|
class: "link-text link-drag color-black",
|
|
@@ -6599,17 +6595,17 @@ function Ri(e, a, n, o, i, r) {
|
|
|
6599
6595
|
}, p(r.linkText), 5)
|
|
6600
6596
|
], 6);
|
|
6601
6597
|
}
|
|
6602
|
-
const
|
|
6598
|
+
const Vi = /* @__PURE__ */ T(Ei, [["render", Ni]]), Oi = {
|
|
6603
6599
|
ANDROID_VERSION: "5.6",
|
|
6604
6600
|
IOS_VERSION: "5.6",
|
|
6605
6601
|
WEB_VERSION: "5.6.0",
|
|
6606
6602
|
SUPPORTED_LANGUAGES: ["en", "de", "es", "kr", "it", "fr"],
|
|
6607
6603
|
METAPIXEL_ID: "1203678696914368",
|
|
6608
6604
|
GOOGLE_ANALYTICS_ID: ""
|
|
6609
|
-
},
|
|
6605
|
+
}, Bi = {
|
|
6610
6606
|
name: "Language",
|
|
6611
6607
|
mixins: [z],
|
|
6612
|
-
components: { LinkIcon:
|
|
6608
|
+
components: { LinkIcon: Vi },
|
|
6613
6609
|
data() {
|
|
6614
6610
|
return {
|
|
6615
6611
|
toggle: !1
|
|
@@ -6620,7 +6616,7 @@ const Ni = /* @__PURE__ */ T(Ii, [["render", Ri]]), Vi = {
|
|
|
6620
6616
|
this.toggle = !1;
|
|
6621
6617
|
});
|
|
6622
6618
|
let e = this.isNative ? await $.getLanguageCode() : N.getFirstBrowserLanguage();
|
|
6623
|
-
e &&
|
|
6619
|
+
e && Oi.SUPPORTED_LANGUAGES.includes(e) && this.updateLanguage(e);
|
|
6624
6620
|
},
|
|
6625
6621
|
beforeDestroy() {
|
|
6626
6622
|
d._events.toggleLanguageModal.pop();
|
|
@@ -6639,16 +6635,16 @@ const Ni = /* @__PURE__ */ T(Ii, [["render", Ri]]), Vi = {
|
|
|
6639
6635
|
this.toggle = !this.toggle;
|
|
6640
6636
|
}
|
|
6641
6637
|
}
|
|
6642
|
-
},
|
|
6638
|
+
}, Di = (e) => (O("data-v-34a6b7b2"), e = e(), B(), e), Ui = /* @__PURE__ */ Di(() => /* @__PURE__ */ t("i", { class: "font-17 fa color-black" }, [
|
|
6643
6639
|
/* @__PURE__ */ t("img", {
|
|
6644
6640
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
6645
6641
|
class: "fa responsive-image",
|
|
6646
6642
|
style: { width: "45%" }
|
|
6647
6643
|
})
|
|
6648
|
-
], -1)),
|
|
6649
|
-
|
|
6650
|
-
],
|
|
6651
|
-
function
|
|
6644
|
+
], -1)), Ki = [
|
|
6645
|
+
Ui
|
|
6646
|
+
], $i = { class: "bold center-text color-black small-bottom" };
|
|
6647
|
+
function Hi(e, a, n, o, i, r) {
|
|
6652
6648
|
const u = V("LinkIcon");
|
|
6653
6649
|
return c(), l("div", {
|
|
6654
6650
|
class: b(["menu-wrapper menu-light menu-white menu-modal center-text activate-page", { "active-menu": i.toggle }]),
|
|
@@ -6658,8 +6654,8 @@ function $i(e, a, n, o, i, r) {
|
|
|
6658
6654
|
onClick: a[0] || (a[0] = (...s) => r.close && r.close(...s)),
|
|
6659
6655
|
class: "color-black pull-right pointer",
|
|
6660
6656
|
style: { "margin-top": "5px", position: "absolute", right: "5px" }
|
|
6661
|
-
},
|
|
6662
|
-
t("h3",
|
|
6657
|
+
}, Ki),
|
|
6658
|
+
t("h3", $i, p(e.ssoLang[e.appLanguage].app_language), 1),
|
|
6663
6659
|
v(u, {
|
|
6664
6660
|
onClick: a[1] || (a[1] = (s) => r.updateLanguage("en")),
|
|
6665
6661
|
"link-style": "link-grid",
|
|
@@ -6718,38 +6714,38 @@ function $i(e, a, n, o, i, r) {
|
|
|
6718
6714
|
}, null, 8, ["data"])
|
|
6719
6715
|
], 2);
|
|
6720
6716
|
}
|
|
6721
|
-
const Se = /* @__PURE__ */ T(
|
|
6722
|
-
var
|
|
6723
|
-
const
|
|
6717
|
+
const Se = /* @__PURE__ */ T(Bi, [["render", Hi], ["__scopeId", "data-v-34a6b7b2"]]);
|
|
6718
|
+
var Fi = { VITE_APP_MODE: "npm", VITE_APP_APP_ROOT: "https://t.link", VITE_APP_API_ROOT: "https://api.tapni.co", VITE_APP_GOOGLE_RECAPTCHA_SITE_KEY: "6LenkC0mAAAAADWBxPOhpmwXCwzCJd7cilNgtOLk", VITE_APP_SSO_ID: "9cd47053-080a-4df8-8fd8-ca4389163fde", VITE_APP_POPUP_LOGIN_ALLOWED_ORIGIN: "https://auth.tapni.com", BASE_URL: "/", MODE: "production", DEV: !1, PROD: !0, SSR: !1 };
|
|
6719
|
+
const Qi = { id: "ssoapp" }, Gi = {
|
|
6724
6720
|
key: 0,
|
|
6725
6721
|
href: "/",
|
|
6726
6722
|
class: "header-logo"
|
|
6727
|
-
},
|
|
6723
|
+
}, Wi = /* @__PURE__ */ t("img", {
|
|
6728
6724
|
src: "data:image/png;base64,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",
|
|
6729
6725
|
onerror: "this.onerror=null;this.src='https://cdn.tapni.co/images/logo-dark.png';",
|
|
6730
6726
|
class: "header-logo-img"
|
|
6731
|
-
}, null, -1),
|
|
6732
|
-
|
|
6733
|
-
],
|
|
6727
|
+
}, null, -1), Xi = [
|
|
6728
|
+
Wi
|
|
6729
|
+
], Yi = { class: "lang-icon" }, Zi = {
|
|
6734
6730
|
class: "snackbar snackbar-boxed",
|
|
6735
6731
|
id: "snackbar"
|
|
6736
|
-
},
|
|
6732
|
+
}, Ji = {
|
|
6737
6733
|
class: "snack-body",
|
|
6738
6734
|
id: "errorSnack"
|
|
6739
|
-
},
|
|
6735
|
+
}, eo = { id: "errorMessage" }, ao = /* @__PURE__ */ t("img", {
|
|
6740
6736
|
src: "https://cdn.tapni.co/icons/notification-close.png",
|
|
6741
6737
|
style: { width: "100%" }
|
|
6742
|
-
}, null, -1),
|
|
6743
|
-
|
|
6744
|
-
],
|
|
6738
|
+
}, null, -1), no = [
|
|
6739
|
+
ao
|
|
6740
|
+
], to = {
|
|
6745
6741
|
class: "snack-body",
|
|
6746
6742
|
id: "successSnack"
|
|
6747
|
-
},
|
|
6743
|
+
}, io = { id: "successMessage" }, oo = /* @__PURE__ */ t("img", {
|
|
6748
6744
|
src: "https://cdn.tapni.co/icons/notification-close.png",
|
|
6749
6745
|
style: { width: "100%" }
|
|
6750
|
-
}, null, -1),
|
|
6751
|
-
|
|
6752
|
-
],
|
|
6746
|
+
}, null, -1), ro = [
|
|
6747
|
+
oo
|
|
6748
|
+
], so = {
|
|
6753
6749
|
name: "TapniAuth",
|
|
6754
6750
|
mixins: [z],
|
|
6755
6751
|
data() {
|
|
@@ -6813,20 +6809,20 @@ const Fi = { id: "ssoapp" }, Qi = {
|
|
|
6813
6809
|
this.applyBgStyle();
|
|
6814
6810
|
}
|
|
6815
6811
|
}
|
|
6816
|
-
}, ne = /* @__PURE__ */ Object.assign(
|
|
6812
|
+
}, ne = /* @__PURE__ */ Object.assign(so, {
|
|
6817
6813
|
setup(e) {
|
|
6818
6814
|
return document.addEventListener("DOMContentLoaded", function() {
|
|
6819
6815
|
const a = document.createElement("script");
|
|
6820
|
-
a.src = `https://www.google.com/recaptcha/api.js?render=${
|
|
6821
|
-
}), (a, n) => (c(), l("div",
|
|
6822
|
-
a.display === "redirect" ? (c(), l("a",
|
|
6816
|
+
a.src = `https://www.google.com/recaptcha/api.js?render=${Fi.VITE_GOOGLE_RECAPTCHA_SITE_KEY}`, document.head.appendChild(a);
|
|
6817
|
+
}), (a, n) => (c(), l("div", Qi, [
|
|
6818
|
+
a.display === "redirect" ? (c(), l("a", Gi, Xi)) : h("", !0),
|
|
6823
6819
|
a.display === "redirect" ? (c(), l("a", {
|
|
6824
6820
|
key: 1,
|
|
6825
6821
|
onClick: n[0] || (n[0] = (...o) => a.toggleLanguageModal && a.toggleLanguageModal(...o)),
|
|
6826
6822
|
class: "font-18 no-border pointer color-black",
|
|
6827
6823
|
style: { position: "absolute", right: "20px", top: "-10px" }
|
|
6828
6824
|
}, [
|
|
6829
|
-
t("span",
|
|
6825
|
+
t("span", Yi, p(a.appLanguage.toUpperCase()), 1)
|
|
6830
6826
|
])) : h("", !0),
|
|
6831
6827
|
v(we),
|
|
6832
6828
|
v(Se),
|
|
@@ -6842,30 +6838,30 @@ const Fi = { id: "ssoapp" }, Qi = {
|
|
|
6842
6838
|
key: 5,
|
|
6843
6839
|
isModal: e.isModal
|
|
6844
6840
|
}, null, 8, ["isModal"])) : a.initialized && a.renderView === "AuthReset" ? (c(), P(be, { key: 6 })) : a.initialized && a.renderView === "AuthCallback" ? (c(), P(ye, { key: 7 })) : (c(), P(Pe(Ae), { key: 8 })),
|
|
6845
|
-
t("div",
|
|
6846
|
-
t("p",
|
|
6847
|
-
t("span",
|
|
6841
|
+
t("div", Zi, [
|
|
6842
|
+
t("p", Ji, [
|
|
6843
|
+
t("span", eo, p(a.ssoLang[a.appLanguage].error), 1),
|
|
6848
6844
|
t("a", {
|
|
6849
6845
|
onClick: n[1] || (n[1] = (...o) => a.closeSnacks && a.closeSnacks(...o)),
|
|
6850
6846
|
style: { position: "absolute", right: "10px", top: "10px", width: "50px", height: "50px" }
|
|
6851
|
-
},
|
|
6847
|
+
}, no)
|
|
6852
6848
|
]),
|
|
6853
|
-
t("p",
|
|
6854
|
-
t("span",
|
|
6849
|
+
t("p", to, [
|
|
6850
|
+
t("span", io, p(a.ssoLang[a.appLanguage].success), 1),
|
|
6855
6851
|
t("a", {
|
|
6856
6852
|
onClick: n[2] || (n[2] = (...o) => a.closeSnacks && a.closeSnacks(...o)),
|
|
6857
6853
|
style: { position: "absolute", right: "10px", top: "10px", width: "50px", height: "50px" }
|
|
6858
|
-
},
|
|
6854
|
+
}, ro)
|
|
6859
6855
|
])
|
|
6860
6856
|
])
|
|
6861
6857
|
]));
|
|
6862
6858
|
}
|
|
6863
|
-
}),
|
|
6859
|
+
}), Lo = {
|
|
6864
6860
|
TapniAuth: ne,
|
|
6865
6861
|
install: (e) => {
|
|
6866
6862
|
e.component("TapniAuth", ne);
|
|
6867
6863
|
}
|
|
6868
6864
|
};
|
|
6869
6865
|
export {
|
|
6870
|
-
|
|
6866
|
+
Lo as default
|
|
6871
6867
|
};
|