@tapni/auth 0.0.23 → 0.0.24
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/.vite/manifest.json +2 -2
- package/dist/TapniAuth.es.js +344 -351
- package/dist/TapniAuth.umd.js +9 -9
- package/package.json +2 -2
- package/src/install.js +5 -0
- package/src/main.js +10 -0
- package/src/mixins/auth.mixin.js +1 -2
- package/src/mixins/global.mixin.js +0 -13
- package/src/views/Login.vue +2 -2
package/dist/TapniAuth.es.js
CHANGED
|
@@ -2,9 +2,8 @@ import { reactive as Ce, readonly as Te, resolveComponent as V, openBlock as c,
|
|
|
2
2
|
import { RouterView as Ae } from "vue-router";
|
|
3
3
|
import g from "await-to-js";
|
|
4
4
|
import H from "axios";
|
|
5
|
-
import { jwtDecode as
|
|
5
|
+
import { jwtDecode as te } from "jwt-decode";
|
|
6
6
|
import { Device as F } from "@capacitor/device";
|
|
7
|
-
import { StorageMixin as te } from "@tapni/capacitor-reactive-localstorage-vue3";
|
|
8
7
|
import { Capacitor as D } from "@capacitor/core";
|
|
9
8
|
import { GoogleAuth as ee } from "@codetrix-studio/capacitor-google-auth";
|
|
10
9
|
import { FacebookLogin as Ie } from "@capacitor-community/facebook-login";
|
|
@@ -13,8 +12,9 @@ import { MsAuthPlugin as xe } from "@recognizebv/capacitor-plugin-msauth";
|
|
|
13
12
|
import { Browser as Q } from "@capacitor/browser";
|
|
14
13
|
import qe from "qr-code-styling";
|
|
15
14
|
import { sanitizeUrl as Me } from "@braintree/sanitize-url";
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
import Re from "@tapni/capacitor-reactive-localstorage-vue3";
|
|
16
|
+
const Ne = "0.0.23", m = (e, a = !1) => {
|
|
17
|
+
const n = Ne;
|
|
18
18
|
let o = H.create({
|
|
19
19
|
baseURL: "https://api.tapni.co/v1/",
|
|
20
20
|
headers: {
|
|
@@ -33,7 +33,7 @@ const Re = "0.0.22", m = (e, a = !1) => {
|
|
|
33
33
|
lang: e.appLang,
|
|
34
34
|
realm: e.realm || "app"
|
|
35
35
|
}), e.token && !a) {
|
|
36
|
-
const r =
|
|
36
|
+
const r = te(e.token);
|
|
37
37
|
if (r.exp - 30 < Math.floor(Date.now() / 1e3))
|
|
38
38
|
return z.methods.refreshTokenAction(r).then(() => (i.headers = {
|
|
39
39
|
...i.headers,
|
|
@@ -3346,7 +3346,7 @@ Tanıştığınız herkesi etkileyin 😎 <br> Kendinize bir tane ayırın 👇`
|
|
|
3346
3346
|
choose_other_login_methods: "Diğer giriş yöntemlerini seçin",
|
|
3347
3347
|
no_sso_logins: "Şirketiniz SSO girişini kullanmıyor, lütfen yöneticinizle iletişime geçin"
|
|
3348
3348
|
}
|
|
3349
|
-
},
|
|
3349
|
+
}, Ve = {
|
|
3350
3350
|
state: {
|
|
3351
3351
|
english: "英文",
|
|
3352
3352
|
spanish: "西班牙文",
|
|
@@ -4251,8 +4251,7 @@ Tanıştığınız herkesi etkileyin 😎 <br> Kendinize bir tane ayırın 👇`
|
|
|
4251
4251
|
choose_other_login_methods: "다른 로그인 방법 선택하기",
|
|
4252
4252
|
no_sso_logins: "귀하의 회사는 SSO 로그인을 사용하지 않습니다. 관리자에게 문의하십시오."
|
|
4253
4253
|
}
|
|
4254
|
-
},
|
|
4255
|
-
mixins: [te],
|
|
4254
|
+
}, Oe = {
|
|
4256
4255
|
computed: {
|
|
4257
4256
|
home() {
|
|
4258
4257
|
return this.storage.token && this.storage.username ? "/" + this.storage.username : "/welcome";
|
|
@@ -4274,17 +4273,6 @@ Tanıştığınız herkesi etkileyin 😎 <br> Kendinize bir tane ayırın 👇`
|
|
|
4274
4273
|
return D.isNativePlatform();
|
|
4275
4274
|
}
|
|
4276
4275
|
},
|
|
4277
|
-
async mounted() {
|
|
4278
|
-
await this.initializeStorage({
|
|
4279
|
-
realm: "",
|
|
4280
|
-
token: "",
|
|
4281
|
-
refreshTokens: "",
|
|
4282
|
-
username: "",
|
|
4283
|
-
UserId: "",
|
|
4284
|
-
verifyEmail: "",
|
|
4285
|
-
subdomain: ""
|
|
4286
|
-
});
|
|
4287
|
-
},
|
|
4288
4276
|
methods: {
|
|
4289
4277
|
errorHandler(e) {
|
|
4290
4278
|
return e && e.response && e.response.data && e.response.data.error && ((e.response.data.error === "ACCESS_DENIED" || e.response.data.error === "TOKEN_EXPIRED") && this.logout(), !e.response.data.error.includes("Network Error") && !e.response.data.error.includes("Cannot read properties") && this.errorSnack(e.response.data.error)), e;
|
|
@@ -4330,9 +4318,9 @@ Tanıştığınız herkesi etkileyin 😎 <br> Kendinize bir tane ayırın 👇`
|
|
|
4330
4318
|
}
|
|
4331
4319
|
}
|
|
4332
4320
|
};
|
|
4333
|
-
var
|
|
4321
|
+
var Be = { 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 };
|
|
4334
4322
|
const z = {
|
|
4335
|
-
mixins: [
|
|
4323
|
+
mixins: [Oe],
|
|
4336
4324
|
data() {
|
|
4337
4325
|
return {
|
|
4338
4326
|
appLanguage: "en",
|
|
@@ -4351,7 +4339,7 @@ const z = {
|
|
|
4351
4339
|
it: ce.state,
|
|
4352
4340
|
sr: le.state,
|
|
4353
4341
|
tr: de.state,
|
|
4354
|
-
cn:
|
|
4342
|
+
cn: Ve.state,
|
|
4355
4343
|
kr: pe.state
|
|
4356
4344
|
},
|
|
4357
4345
|
display: "npm",
|
|
@@ -4391,7 +4379,7 @@ const z = {
|
|
|
4391
4379
|
}
|
|
4392
4380
|
},
|
|
4393
4381
|
mounted() {
|
|
4394
|
-
this.$route.query.redirect_uri && (this.redirect_uri = this.$route.query.redirect_uri), this.$route.query.display && (this.display = this.$route.query.display), this.$route.query.state && (this.state = this.$route.query.state), this.$route.query.response_type && (this.response_type = this.$route.query.response_type), this.$route.query.realm && (this.storage.realm = this.$route.query.realm), d.$on("updateLang", this.updateLang),
|
|
4382
|
+
this.$route.query.redirect_uri && (this.redirect_uri = this.$route.query.redirect_uri), this.$route.query.display && (this.display = this.$route.query.display), this.$route.query.state && (this.state = this.$route.query.state), this.$route.query.response_type && (this.response_type = this.$route.query.response_type), this.$route.query.realm && (this.storage.realm = this.$route.query.realm), d.$on("updateLang", this.updateLang), Be.NODE_ENV === "development" && (this.allowedOrigins.push("http://localhost:8082"), this.allowedOrigins.push("http://localhost:7777"), this.allowedOrigins.push("http://localhost:5173"));
|
|
4395
4383
|
},
|
|
4396
4384
|
methods: {
|
|
4397
4385
|
errorHandler(e) {
|
|
@@ -4653,7 +4641,7 @@ const z = {
|
|
|
4653
4641
|
for (const [o, i] of a)
|
|
4654
4642
|
n[o] = i;
|
|
4655
4643
|
return n;
|
|
4656
|
-
},
|
|
4644
|
+
}, De = {
|
|
4657
4645
|
name: "AuthWelcome",
|
|
4658
4646
|
mixins: [z],
|
|
4659
4647
|
data() {
|
|
@@ -4667,23 +4655,23 @@ const z = {
|
|
|
4667
4655
|
}, 1500), d.$emit("ssoEvent", { name: "setInitialize", data: !0 });
|
|
4668
4656
|
},
|
|
4669
4657
|
methods: {}
|
|
4670
|
-
}, ue = (e) => (O("data-v-bf520ec5"), e = e(), B(), e),
|
|
4658
|
+
}, ue = (e) => (O("data-v-bf520ec5"), e = e(), B(), e), Ue = {
|
|
4671
4659
|
class: "page-login content-boxed content-boxed-padding center-text",
|
|
4672
4660
|
style: { "margin-top": "-1px", overflow: "hidden", border: "solid 0px #ffffff" }
|
|
4673
|
-
},
|
|
4661
|
+
}, Ke = ["autoplay"], He = /* @__PURE__ */ ue(() => /* @__PURE__ */ t("source", {
|
|
4674
4662
|
src: "https://cdn.tapni.co/images/tapni-card-tap-video-white.mp4",
|
|
4675
4663
|
type: "video/mp4"
|
|
4676
|
-
}, null, -1)),
|
|
4677
|
-
|
|
4678
|
-
],
|
|
4664
|
+
}, null, -1)), Fe = [
|
|
4665
|
+
He
|
|
4666
|
+
], Qe = { class: "bold full-top no-bottom center-text" }, $e = { class: "full-bottom half-top center-text color-black font-16" }, Ge = { class: "page-login-links center-text" }, We = /* @__PURE__ */ ue(() => /* @__PURE__ */ t("div", { class: "clear" }, null, -1)), Xe = {
|
|
4679
4667
|
key: 2,
|
|
4680
4668
|
style: { display: "flex", "flex-direction": "row", "justify-content": "space-around", width: "90%", margin: "0 auto", "margin-top": "40px" }
|
|
4681
|
-
},
|
|
4682
|
-
|
|
4669
|
+
}, Ye = /* @__PURE__ */ je('<a href="https://play.google.com/store/apps/details?id=co.tapni.app" target="_blank" data-v-bf520ec5><img src="https://cdn.tapni.co/images/playstore.png" class="app-store-icon pointer" style="width:55px;" data-v-bf520ec5></a><a href="https://apps.apple.com/ag/app/tapni/id1552930233" target="_blank" data-v-bf520ec5><img src="https://cdn.tapni.co/images/appstore.png" class="app-store-icon pointer" style="width:55px;" data-v-bf520ec5></a><a href="https://appgallery.huawei.com/#/app/C103931997" target="_blank" data-v-bf520ec5><img src="https://cdn.tapni.co/images/appgallery.png" class="app-store-icon pointer" style="width:55px;" data-v-bf520ec5></a>', 3), Ze = [
|
|
4670
|
+
Ye
|
|
4683
4671
|
];
|
|
4684
|
-
function
|
|
4672
|
+
function Je(e, a, n, o, i, r) {
|
|
4685
4673
|
const u = V("router-link");
|
|
4686
|
-
return c(), l("div",
|
|
4674
|
+
return c(), l("div", Ue, [
|
|
4687
4675
|
t("video", {
|
|
4688
4676
|
id: "tapniVideo",
|
|
4689
4677
|
muted: "",
|
|
@@ -4692,9 +4680,9 @@ function Ze(e, a, n, o, i, r) {
|
|
|
4692
4680
|
width: "350",
|
|
4693
4681
|
style: { margin: "0 auto", "max-width": "100%", "margin-top": "63px", overflow: "hidden" },
|
|
4694
4682
|
autoplay: e.isNative
|
|
4695
|
-
},
|
|
4696
|
-
t("h1",
|
|
4697
|
-
t("p",
|
|
4683
|
+
}, Fe, 8, Ke),
|
|
4684
|
+
t("h1", Qe, p(e.ssoLang[this.appLang].welcome), 1),
|
|
4685
|
+
t("p", $e, p(e.ssoLang[this.appLang].welcome_p1), 1),
|
|
4698
4686
|
h("", !0),
|
|
4699
4687
|
h("", !0),
|
|
4700
4688
|
v(u, {
|
|
@@ -4707,7 +4695,7 @@ function Ze(e, a, n, o, i, r) {
|
|
|
4707
4695
|
]),
|
|
4708
4696
|
_: 1
|
|
4709
4697
|
}),
|
|
4710
|
-
t("div",
|
|
4698
|
+
t("div", Ge, [
|
|
4711
4699
|
v(u, { to: "/login" }, {
|
|
4712
4700
|
default: j(() => [
|
|
4713
4701
|
f(p(e.ssoLang[this.appLang].already_registered) + "? ", 1),
|
|
@@ -4715,12 +4703,12 @@ function Ze(e, a, n, o, i, r) {
|
|
|
4715
4703
|
]),
|
|
4716
4704
|
_: 1
|
|
4717
4705
|
}),
|
|
4718
|
-
|
|
4706
|
+
We
|
|
4719
4707
|
]),
|
|
4720
|
-
this.isNative ? h("", !0) : (c(), l("div",
|
|
4708
|
+
this.isNative ? h("", !0) : (c(), l("div", Xe, Ze))
|
|
4721
4709
|
]);
|
|
4722
4710
|
}
|
|
4723
|
-
const _e = /* @__PURE__ */ T(
|
|
4711
|
+
const _e = /* @__PURE__ */ T(De, [["render", Je], ["__scopeId", "data-v-bf520ec5"]]), me = {
|
|
4724
4712
|
data() {
|
|
4725
4713
|
return {
|
|
4726
4714
|
googleLoad: !1
|
|
@@ -4835,7 +4823,7 @@ const ge = {
|
|
|
4835
4823
|
}));
|
|
4836
4824
|
if (e)
|
|
4837
4825
|
return this.appleLoad = !1;
|
|
4838
|
-
if (a.response.tokenData =
|
|
4826
|
+
if (a.response.tokenData = te(a.response.identityToken), a && a.response && a.response.identityToken) {
|
|
4839
4827
|
this.referral && (a.response.ref = this.referral), this.display === "popup" && (a.response_type = "code");
|
|
4840
4828
|
const [o, i] = await g(w.appleSDK(a.response, this.storage));
|
|
4841
4829
|
if (o)
|
|
@@ -4853,7 +4841,7 @@ const ge = {
|
|
|
4853
4841
|
}
|
|
4854
4842
|
}
|
|
4855
4843
|
};
|
|
4856
|
-
var
|
|
4844
|
+
var ea = { 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 };
|
|
4857
4845
|
const $ = {
|
|
4858
4846
|
data() {
|
|
4859
4847
|
return {
|
|
@@ -4879,7 +4867,7 @@ const $ = {
|
|
|
4879
4867
|
knownAuthorities: [],
|
|
4880
4868
|
keyHash: "4+5wCp8QcLptlO0aeP5RDTTOWyg=",
|
|
4881
4869
|
// Android,
|
|
4882
|
-
redirectUri:
|
|
4870
|
+
redirectUri: ea.NODE_ENV === "development" ? `${window.location.origin}/login` : "https://" + window.location.host + "/login"
|
|
4883
4871
|
})
|
|
4884
4872
|
);
|
|
4885
4873
|
if (n)
|
|
@@ -5099,7 +5087,7 @@ const $ = {
|
|
|
5099
5087
|
}
|
|
5100
5088
|
}
|
|
5101
5089
|
}
|
|
5102
|
-
},
|
|
5090
|
+
}, aa = {
|
|
5103
5091
|
data() {
|
|
5104
5092
|
return {
|
|
5105
5093
|
isQrCodeLogin: !1,
|
|
@@ -5175,9 +5163,9 @@ const $ = {
|
|
|
5175
5163
|
}, 6e4);
|
|
5176
5164
|
}
|
|
5177
5165
|
}
|
|
5178
|
-
},
|
|
5166
|
+
}, na = {
|
|
5179
5167
|
name: "AuthLogin",
|
|
5180
|
-
mixins: [me, ge, he, $, G, W, z,
|
|
5168
|
+
mixins: [me, ge, he, $, G, W, z, aa],
|
|
5181
5169
|
props: {
|
|
5182
5170
|
isModal: {
|
|
5183
5171
|
type: Boolean,
|
|
@@ -5242,12 +5230,12 @@ const $ = {
|
|
|
5242
5230
|
d.$emit("ssoEvent", { name: "toggleAddAccountModalRegister", data: {} });
|
|
5243
5231
|
},
|
|
5244
5232
|
async bum() {
|
|
5245
|
-
this
|
|
5233
|
+
this.$storage.token = "321213";
|
|
5246
5234
|
}
|
|
5247
5235
|
},
|
|
5248
5236
|
watch: {
|
|
5249
5237
|
emailOrUsername(e) {
|
|
5250
|
-
e.includes("@") && (this
|
|
5238
|
+
e.includes("@") && (this.$storage.verifyEmail = e);
|
|
5251
5239
|
},
|
|
5252
5240
|
"$route.path": async function(e) {
|
|
5253
5241
|
if (e === "/login/callback/okta")
|
|
@@ -5256,85 +5244,85 @@ const $ = {
|
|
|
5256
5244
|
return await this.handleSamlRedirect();
|
|
5257
5245
|
}
|
|
5258
5246
|
}
|
|
5259
|
-
},
|
|
5247
|
+
}, ta = /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
5260
5248
|
/* @__PURE__ */ t("img", {
|
|
5261
5249
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
5262
5250
|
class: "responsive-image",
|
|
5263
5251
|
style: { width: "35%" }
|
|
5264
5252
|
})
|
|
5265
|
-
], -1),
|
|
5266
|
-
|
|
5267
|
-
],
|
|
5253
|
+
], -1), ia = [
|
|
5254
|
+
ta
|
|
5255
|
+
], 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" } }, [
|
|
5268
5256
|
/* @__PURE__ */ t("img", {
|
|
5269
5257
|
src: "https://cdn.tapni.co/icons/user.png",
|
|
5270
5258
|
class: "responsive-image",
|
|
5271
5259
|
style: { width: "50%" }
|
|
5272
5260
|
})
|
|
5273
|
-
], -1),
|
|
5261
|
+
], -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" } }, [
|
|
5274
5262
|
/* @__PURE__ */ t("img", {
|
|
5275
5263
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
5276
5264
|
class: "responsive-image",
|
|
5277
5265
|
style: { width: "50%" }
|
|
5278
5266
|
})
|
|
5279
|
-
], -1),
|
|
5267
|
+
], -1), _a = ["type", "placeholder"], ma = {
|
|
5280
5268
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
5281
5269
|
class: "responsive-image password-reveal-icon"
|
|
5282
|
-
},
|
|
5270
|
+
}, ga = {
|
|
5283
5271
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
5284
5272
|
class: "responsive-image password-reveal-icon"
|
|
5285
|
-
},
|
|
5273
|
+
}, ha = {
|
|
5286
5274
|
type: "submit",
|
|
5287
5275
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
5288
|
-
},
|
|
5276
|
+
}, fa = { key: 0 }, va = {
|
|
5289
5277
|
key: 1,
|
|
5290
5278
|
class: "button--loading button__loader"
|
|
5291
|
-
},
|
|
5279
|
+
}, ka = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin half-top half-bottom" }, null, -1), ba = /* @__PURE__ */ t("img", {
|
|
5292
5280
|
src: "https://cdn.tapni.co/icons/apple-logo.png",
|
|
5293
5281
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
5294
|
-
}, null, -1),
|
|
5282
|
+
}, null, -1), ya = { key: 0 }, wa = {
|
|
5295
5283
|
key: 1,
|
|
5296
5284
|
class: "button--loading button__loader"
|
|
5297
|
-
},
|
|
5285
|
+
}, za = /* @__PURE__ */ t("img", {
|
|
5298
5286
|
src: "https://cdn.tapni.co/icons/g-logo.png",
|
|
5299
5287
|
style: { position: "absolute", "margin-left": "-10px", padding: "8px 0", height: "100%" }
|
|
5300
|
-
}, null, -1),
|
|
5288
|
+
}, null, -1), La = { key: 0 }, Sa = {
|
|
5301
5289
|
key: 1,
|
|
5302
5290
|
class: "button--loading-black button__loader"
|
|
5303
|
-
},
|
|
5291
|
+
}, Ca = /* @__PURE__ */ t("img", {
|
|
5304
5292
|
src: "https://cdn.tapni.co/icons/facebook-blue.png",
|
|
5305
5293
|
style: { position: "absolute", "margin-left": "-9px", padding: "10px 0", height: "100%" }
|
|
5306
|
-
}, null, -1),
|
|
5294
|
+
}, null, -1), Ta = { key: 0 }, ja = {
|
|
5307
5295
|
key: 1,
|
|
5308
5296
|
class: "button--loading-black button__loader"
|
|
5309
|
-
},
|
|
5297
|
+
}, Pa = /* @__PURE__ */ t("img", {
|
|
5310
5298
|
src: "https://cdn.tapni.co/icons/outlook.png",
|
|
5311
5299
|
style: { position: "absolute", "margin-left": "-8px", padding: "10px 0", height: "100%" }
|
|
5312
|
-
}, null, -1),
|
|
5300
|
+
}, null, -1), Aa = { key: 0 }, Ia = {
|
|
5313
5301
|
key: 1,
|
|
5314
5302
|
class: "button--loading-black button__loader"
|
|
5315
|
-
},
|
|
5303
|
+
}, Ea = /* @__PURE__ */ t("img", {
|
|
5316
5304
|
src: "https://cdn.tapni.co/icons/sso-key.png",
|
|
5317
5305
|
style: { position: "absolute", "margin-left": "-8px", padding: "10px 0", height: "100%" }
|
|
5318
|
-
}, null, -1),
|
|
5306
|
+
}, null, -1), xa = { key: 0 }, qa = {
|
|
5319
5307
|
key: 1,
|
|
5320
5308
|
class: "button--loading-black button__loader"
|
|
5321
|
-
},
|
|
5309
|
+
}, Ma = /* @__PURE__ */ t("img", {
|
|
5322
5310
|
src: "https://cdn.tapni.co/icons/sso-key.png",
|
|
5323
5311
|
style: { position: "absolute", "margin-left": "-8px", padding: "10px 0", height: "100%" }
|
|
5324
|
-
}, null, -1),
|
|
5312
|
+
}, null, -1), Ra = { key: 0 }, Na = {
|
|
5325
5313
|
key: 1,
|
|
5326
5314
|
class: "button--loading-black button__loader"
|
|
5327
|
-
},
|
|
5315
|
+
}, Va = /* @__PURE__ */ t("img", {
|
|
5328
5316
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5329
5317
|
style: { position: "absolute", "margin-left": "-8px", padding: "12px 0", height: "100%" }
|
|
5330
|
-
}, null, -1),
|
|
5318
|
+
}, 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 = {
|
|
5331
5319
|
class: "",
|
|
5332
5320
|
href: "https://tapni.co/policies/terms-of-service"
|
|
5333
|
-
},
|
|
5321
|
+
}, Ka = { href: "https://tapni.co/policies/privacy-policy" }, Ha = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1), Fa = {
|
|
5334
5322
|
key: 9,
|
|
5335
5323
|
class: "page-login-links"
|
|
5336
|
-
},
|
|
5337
|
-
function
|
|
5324
|
+
}, Qa = /* @__PURE__ */ t("div", { class: "clear" }, null, -1), $a = { class: "forgot center-text pointer small-top" }, Ga = /* @__PURE__ */ t("br", null, null, -1), Wa = /* @__PURE__ */ t("div", { class: "clear" }, null, -1);
|
|
5325
|
+
function Xa(e, a, n, o, i, r) {
|
|
5338
5326
|
const u = V("router-link");
|
|
5339
5327
|
return c(), l("form", {
|
|
5340
5328
|
class: "page-login content-boxed content-boxed-padding",
|
|
@@ -5347,16 +5335,16 @@ function Wa(e, a, n, o, i, r) {
|
|
|
5347
5335
|
onClick: a[0] || (a[0] = (...s) => r.close && r.close(...s)),
|
|
5348
5336
|
class: "color-black pull-right pointer",
|
|
5349
5337
|
style: { "margin-top": "0px", position: "absolute", right: "-20px", "text-align": "right" }
|
|
5350
|
-
},
|
|
5338
|
+
}, ia)) : h("", !0),
|
|
5351
5339
|
t("h1", {
|
|
5352
5340
|
class: "bold no-bottom center-text",
|
|
5353
5341
|
style: { "margin-top": "63px" },
|
|
5354
5342
|
onClick: a[1] || (a[1] = (...s) => r.bum && r.bum(...s))
|
|
5355
5343
|
}, p(this.ssoLang[this.appLang].login), 1),
|
|
5356
|
-
|
|
5357
|
-
r.displayFormLogin ? (c(), l("span",
|
|
5358
|
-
t("div",
|
|
5359
|
-
|
|
5344
|
+
oa,
|
|
5345
|
+
r.displayFormLogin ? (c(), l("span", ra, [
|
|
5346
|
+
t("div", sa, [
|
|
5347
|
+
ca,
|
|
5360
5348
|
k(t("input", {
|
|
5361
5349
|
"onUpdate:modelValue": a[2] || (a[2] = (s) => i.emailOrUsername = s),
|
|
5362
5350
|
onKeydown: a[3] || (a[3] = E(y(() => {
|
|
@@ -5368,13 +5356,13 @@ function Wa(e, a, n, o, i, r) {
|
|
|
5368
5356
|
name: "email",
|
|
5369
5357
|
placeholder: e.ssoLang[this.appLang].email_username,
|
|
5370
5358
|
required: ""
|
|
5371
|
-
}, null, 40,
|
|
5359
|
+
}, null, 40, la), [
|
|
5372
5360
|
[x, i.emailOrUsername]
|
|
5373
5361
|
]),
|
|
5374
|
-
|
|
5362
|
+
da
|
|
5375
5363
|
]),
|
|
5376
|
-
t("div",
|
|
5377
|
-
|
|
5364
|
+
t("div", pa, [
|
|
5365
|
+
ua,
|
|
5378
5366
|
k(t("input", {
|
|
5379
5367
|
"onUpdate:modelValue": a[4] || (a[4] = (s) => i.password = s),
|
|
5380
5368
|
type: i.revealPassword ? "text" : "password",
|
|
@@ -5382,103 +5370,103 @@ function Wa(e, a, n, o, i, r) {
|
|
|
5382
5370
|
name: "password",
|
|
5383
5371
|
required: "",
|
|
5384
5372
|
minlength: "8"
|
|
5385
|
-
}, null, 8,
|
|
5373
|
+
}, null, 8, _a), [
|
|
5386
5374
|
[K, i.password]
|
|
5387
5375
|
]),
|
|
5388
5376
|
t("em", {
|
|
5389
5377
|
onClick: a[5] || (a[5] = (s) => i.revealPassword = !i.revealPassword),
|
|
5390
5378
|
class: "pointer"
|
|
5391
5379
|
}, [
|
|
5392
|
-
k(t("img",
|
|
5380
|
+
k(t("img", ma, null, 512), [
|
|
5393
5381
|
[I, !i.revealPassword]
|
|
5394
5382
|
]),
|
|
5395
|
-
k(t("img",
|
|
5383
|
+
k(t("img", ga, null, 512), [
|
|
5396
5384
|
[I, i.revealPassword]
|
|
5397
5385
|
])
|
|
5398
5386
|
])
|
|
5399
5387
|
]),
|
|
5400
|
-
t("button",
|
|
5401
|
-
i.submitted ? (c(), l("span",
|
|
5388
|
+
t("button", ha, [
|
|
5389
|
+
i.submitted ? (c(), l("span", va)) : (c(), l("span", fa, p(e.ssoLang[e.appLang].login), 1))
|
|
5402
5390
|
])
|
|
5403
5391
|
])) : h("", !0),
|
|
5404
|
-
|
|
5392
|
+
ka,
|
|
5405
5393
|
e.displayAppleLogin ? (c(), l("a", {
|
|
5406
5394
|
key: 2,
|
|
5407
5395
|
onClick: a[6] || (a[6] = (...s) => e.appleLogin && e.appleLogin(...s)),
|
|
5408
5396
|
class: "button-center button button-90 google-button pointer"
|
|
5409
5397
|
}, [
|
|
5410
|
-
|
|
5411
|
-
e.appleLoad ? (c(), l("span",
|
|
5398
|
+
ba,
|
|
5399
|
+
e.appleLoad ? (c(), l("span", wa)) : (c(), l("span", ya, p(e.ssoLang[e.appLang].sign_in_with) + " Apple", 1))
|
|
5412
5400
|
])) : h("", !0),
|
|
5413
5401
|
e.displayGoogleLogin ? (c(), l("a", {
|
|
5414
5402
|
key: 3,
|
|
5415
5403
|
onClick: a[7] || (a[7] = (...s) => e.googleLogin && e.googleLogin(...s)),
|
|
5416
5404
|
class: "button-center button button-90 google-button pointer"
|
|
5417
5405
|
}, [
|
|
5418
|
-
|
|
5419
|
-
e.googleLoad ? (c(), l("span",
|
|
5406
|
+
za,
|
|
5407
|
+
e.googleLoad ? (c(), l("span", Sa)) : (c(), l("span", La, p(e.ssoLang[e.appLang].sign_in_with) + " Google", 1))
|
|
5420
5408
|
])) : h("", !0),
|
|
5421
5409
|
e.displayFacebookLogin ? (c(), l("a", {
|
|
5422
5410
|
key: 4,
|
|
5423
5411
|
onClick: a[8] || (a[8] = (...s) => e.facebookLogin && e.facebookLogin(...s)),
|
|
5424
5412
|
class: "button-center button button-90 google-button pointer"
|
|
5425
5413
|
}, [
|
|
5426
|
-
|
|
5427
|
-
e.facebookLoad ? (c(), l("span",
|
|
5414
|
+
Ca,
|
|
5415
|
+
e.facebookLoad ? (c(), l("span", ja)) : (c(), l("span", Ta, p(e.ssoLang[e.appLang].sign_in_with) + " Facebook", 1))
|
|
5428
5416
|
])) : h("", !0),
|
|
5429
5417
|
e.displayMicrosoftSSOLogin ? h("", !0) : (c(), l("a", {
|
|
5430
5418
|
key: 5,
|
|
5431
5419
|
onClick: a[9] || (a[9] = (...s) => e.microsoftLogin && e.microsoftLogin(...s)),
|
|
5432
5420
|
class: "button-center button button-90 google-button pointer"
|
|
5433
5421
|
}, [
|
|
5434
|
-
|
|
5435
|
-
e.microsoftLoad ? (c(), l("span",
|
|
5422
|
+
Pa,
|
|
5423
|
+
e.microsoftLoad ? (c(), l("span", Ia)) : (c(), l("span", Aa, p(e.ssoLang[e.appLang].sign_in_with) + " Outlook", 1))
|
|
5436
5424
|
])),
|
|
5437
5425
|
e.displayMicrosoftSSOLogin ? h("", !0) : (c(), l("a", {
|
|
5438
5426
|
key: 6,
|
|
5439
5427
|
onClick: a[10] || (a[10] = (...s) => e.ssoLogin && e.ssoLogin(...s)),
|
|
5440
5428
|
class: "button-center button button-90 google-button pointer"
|
|
5441
5429
|
}, [
|
|
5442
|
-
|
|
5443
|
-
e.microsoftSSOLoad ? (c(), l("span",
|
|
5430
|
+
Ea,
|
|
5431
|
+
e.microsoftSSOLoad ? (c(), l("span", qa)) : (c(), l("span", xa, p(e.ssoLang[e.appLang].sign_in_with) + " SSO", 1))
|
|
5444
5432
|
])),
|
|
5445
5433
|
e.displayMicrosoftSSOLogin ? (c(), l("a", {
|
|
5446
5434
|
key: 7,
|
|
5447
5435
|
onClick: a[11] || (a[11] = (s) => e.microsoftLogin("sso")),
|
|
5448
5436
|
class: "button-center button button-90 google-button pointer"
|
|
5449
5437
|
}, [
|
|
5450
|
-
|
|
5451
|
-
e.microsoftSSOLoad ? (c(), l("span",
|
|
5438
|
+
Ma,
|
|
5439
|
+
e.microsoftSSOLoad ? (c(), l("span", Ra, p(e.ssoLang[e.appLang].sign_in_with) + " SSO", 1)) : (c(), l("span", Na))
|
|
5452
5440
|
])) : h("", !0),
|
|
5453
5441
|
r.displayFormLogin ? h("", !0) : (c(), l("a", {
|
|
5454
5442
|
key: 8,
|
|
5455
5443
|
onClick: a[12] || (a[12] = (s) => i.emailLogin = !0),
|
|
5456
5444
|
class: "button-center button button-90 google-button pointer"
|
|
5457
5445
|
}, [
|
|
5458
|
-
|
|
5446
|
+
Va,
|
|
5459
5447
|
t("span", null, p(e.ssoLang[e.appLang].sign_in_with) + " Email", 1)
|
|
5460
5448
|
])),
|
|
5461
|
-
|
|
5462
|
-
t("p",
|
|
5449
|
+
Oa,
|
|
5450
|
+
t("p", Ba, [
|
|
5463
5451
|
f(p(e.ssoLang[e.appLang].terms_by_signing_in) + " ", 1),
|
|
5464
|
-
|
|
5465
|
-
t("a",
|
|
5452
|
+
Da,
|
|
5453
|
+
t("a", Ua, p(e.ssoLang[this.appLang].terms_of_service), 1),
|
|
5466
5454
|
f(" " + p(e.ssoLang[e.appLang].and) + " ", 1),
|
|
5467
|
-
t("a",
|
|
5455
|
+
t("a", Ka, p(e.ssoLang[this.appLang].privacy_policy), 1)
|
|
5468
5456
|
]),
|
|
5469
|
-
|
|
5457
|
+
Ha,
|
|
5470
5458
|
n.isModal ? (c(), l("div", {
|
|
5471
5459
|
key: 10,
|
|
5472
5460
|
class: "page-login-links",
|
|
5473
5461
|
onClick: a[13] || (a[13] = (...s) => r.createAccountModal && r.createAccountModal(...s))
|
|
5474
5462
|
}, [
|
|
5475
|
-
t("a",
|
|
5463
|
+
t("a", $a, [
|
|
5476
5464
|
f(p(e.ssoLang[e.appLang].or) + " ", 1),
|
|
5477
|
-
|
|
5465
|
+
Ga,
|
|
5478
5466
|
f(" " + p(e.ssoLang[e.appLang].create_new_account), 1)
|
|
5479
5467
|
]),
|
|
5480
|
-
|
|
5481
|
-
])) : (c(), l("div",
|
|
5468
|
+
Wa
|
|
5469
|
+
])) : (c(), l("div", Fa, [
|
|
5482
5470
|
r.displayRegisterLogin ? (c(), P(u, {
|
|
5483
5471
|
key: 0,
|
|
5484
5472
|
class: "forgot float-right",
|
|
@@ -5499,11 +5487,11 @@ function Wa(e, a, n, o, i, r) {
|
|
|
5499
5487
|
]),
|
|
5500
5488
|
_: 1
|
|
5501
5489
|
})) : h("", !0),
|
|
5502
|
-
|
|
5490
|
+
Qa
|
|
5503
5491
|
]))
|
|
5504
5492
|
], 36);
|
|
5505
5493
|
}
|
|
5506
|
-
const fe = /* @__PURE__ */ T(
|
|
5494
|
+
const fe = /* @__PURE__ */ T(na, [["render", Xa]]), Ya = {
|
|
5507
5495
|
name: "AuthRegister",
|
|
5508
5496
|
mixins: [me, ge, he, $, z],
|
|
5509
5497
|
props: {
|
|
@@ -5570,76 +5558,76 @@ const fe = /* @__PURE__ */ T(aa, [["render", Wa]]), Xa = {
|
|
|
5570
5558
|
this.storage.referral = e;
|
|
5571
5559
|
}
|
|
5572
5560
|
}
|
|
5573
|
-
},
|
|
5561
|
+
}, Za = /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
5574
5562
|
/* @__PURE__ */ t("img", {
|
|
5575
5563
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
5576
5564
|
class: "responsive-image",
|
|
5577
5565
|
style: { width: "35%" }
|
|
5578
5566
|
})
|
|
5579
|
-
], -1),
|
|
5580
|
-
|
|
5581
|
-
],
|
|
5567
|
+
], -1), Ja = [
|
|
5568
|
+
Za
|
|
5569
|
+
], en = {
|
|
5582
5570
|
class: "bold no-bottom center-text",
|
|
5583
5571
|
style: { "margin-top": "63px" }
|
|
5584
|
-
},
|
|
5572
|
+
}, 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" } }, [
|
|
5585
5573
|
/* @__PURE__ */ t("img", {
|
|
5586
5574
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5587
5575
|
class: "responsive-image",
|
|
5588
5576
|
style: { width: "60%" }
|
|
5589
5577
|
})
|
|
5590
|
-
], -1),
|
|
5578
|
+
], -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" } }, [
|
|
5591
5579
|
/* @__PURE__ */ t("img", {
|
|
5592
5580
|
src: "https://cdn.tapni.co/icons/user.png",
|
|
5593
5581
|
class: "responsive-image",
|
|
5594
5582
|
style: { width: "50%" }
|
|
5595
5583
|
})
|
|
5596
|
-
], -1),
|
|
5584
|
+
], -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" } }, [
|
|
5597
5585
|
/* @__PURE__ */ t("img", {
|
|
5598
5586
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
5599
5587
|
class: "responsive-image",
|
|
5600
5588
|
style: { width: "50%" }
|
|
5601
5589
|
})
|
|
5602
|
-
], -1),
|
|
5590
|
+
], -1), hn = ["type", "placeholder"], fn = {
|
|
5603
5591
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
5604
5592
|
class: "responsive-image password-reveal-icon"
|
|
5605
|
-
},
|
|
5593
|
+
}, vn = {
|
|
5606
5594
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
5607
5595
|
class: "responsive-image password-reveal-icon"
|
|
5608
|
-
},
|
|
5596
|
+
}, kn = {
|
|
5609
5597
|
type: "submit",
|
|
5610
5598
|
class: "button black-button google-button bg-tapni-grey pointer button-90 button-center uppercase button-rounded bold full-top"
|
|
5611
|
-
},
|
|
5599
|
+
}, bn = { key: 0 }, yn = {
|
|
5612
5600
|
key: 1,
|
|
5613
5601
|
class: "button--loading button__loader"
|
|
5614
|
-
},
|
|
5602
|
+
}, wn = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin half-top half-bottom" }, null, -1), zn = /* @__PURE__ */ t("img", {
|
|
5615
5603
|
src: "https://cdn.tapni.co/icons/apple-logo.png",
|
|
5616
5604
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
5617
|
-
}, null, -1),
|
|
5605
|
+
}, null, -1), Ln = { key: 0 }, Sn = {
|
|
5618
5606
|
key: 1,
|
|
5619
5607
|
class: "button--loading button__loader"
|
|
5620
|
-
},
|
|
5608
|
+
}, Cn = /* @__PURE__ */ t("img", {
|
|
5621
5609
|
src: "https://cdn.tapni.co/icons/g-logo.png",
|
|
5622
5610
|
style: { position: "absolute", "margin-left": "-9px", padding: "8px 0", height: "100%" }
|
|
5623
|
-
}, null, -1),
|
|
5611
|
+
}, null, -1), Tn = { key: 0 }, jn = {
|
|
5624
5612
|
key: 1,
|
|
5625
5613
|
class: "button--loading button__loader"
|
|
5626
|
-
},
|
|
5614
|
+
}, Pn = /* @__PURE__ */ t("img", {
|
|
5627
5615
|
src: "https://cdn.tapni.co/icons/facebook-blue.png",
|
|
5628
5616
|
style: { position: "absolute", "margin-left": "-10px", padding: "10px 0", height: "100%" }
|
|
5629
|
-
}, null, -1),
|
|
5617
|
+
}, null, -1), An = { key: 0 }, In = {
|
|
5630
5618
|
key: 1,
|
|
5631
5619
|
class: "button--loading button__loader"
|
|
5632
|
-
},
|
|
5620
|
+
}, En = /* @__PURE__ */ t("img", {
|
|
5633
5621
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5634
5622
|
style: { position: "absolute", "margin-left": "-8px", padding: "12px 0", height: "100%" }
|
|
5635
|
-
}, null, -1),
|
|
5623
|
+
}, 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 = {
|
|
5636
5624
|
class: "",
|
|
5637
5625
|
href: "https://tapni.co/policies/terms-of-service"
|
|
5638
|
-
},
|
|
5626
|
+
}, Nn = { href: "https://tapni.co/policies/privacy-policy" }, Vn = /* @__PURE__ */ t("div", { class: "decoration decoration-lines-thin no-bottom" }, null, -1), On = {
|
|
5639
5627
|
key: 5,
|
|
5640
5628
|
class: "page-login-links"
|
|
5641
|
-
},
|
|
5642
|
-
function
|
|
5629
|
+
}, 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);
|
|
5630
|
+
function Hn(e, a, n, o, i, r) {
|
|
5643
5631
|
const u = V("router-link");
|
|
5644
5632
|
return c(), l("form", {
|
|
5645
5633
|
class: "page-login content-boxed content-boxed-padding",
|
|
@@ -5652,17 +5640,17 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5652
5640
|
onClick: a[0] || (a[0] = (...s) => r.close && r.close(...s)),
|
|
5653
5641
|
class: "color-black pull-right pointer",
|
|
5654
5642
|
style: { "margin-top": "0px", position: "absolute", right: "-20px", "text-align": "right" }
|
|
5655
|
-
},
|
|
5656
|
-
t("h1",
|
|
5657
|
-
t("p",
|
|
5658
|
-
i.usernameRegister ? (c(), l("span",
|
|
5643
|
+
}, Ja)) : h("", !0),
|
|
5644
|
+
t("h1", en, p(e.ssoLang[this.appLang].register), 1),
|
|
5645
|
+
t("p", an, [
|
|
5646
|
+
i.usernameRegister ? (c(), l("span", nn, [
|
|
5659
5647
|
f(" t.link/" + p(i.username) + " " + p(e.ssoLang[this.appLang].username_is_free) + " ✅ ", 1),
|
|
5660
|
-
|
|
5648
|
+
tn
|
|
5661
5649
|
])) : h("", !0)
|
|
5662
5650
|
]),
|
|
5663
|
-
i.emailLogin ? (c(), l("span",
|
|
5664
|
-
t("div",
|
|
5665
|
-
|
|
5651
|
+
i.emailLogin ? (c(), l("span", on, [
|
|
5652
|
+
t("div", rn, [
|
|
5653
|
+
sn,
|
|
5666
5654
|
k(t("input", {
|
|
5667
5655
|
"onUpdate:modelValue": a[1] || (a[1] = (s) => i.email = s),
|
|
5668
5656
|
onKeydown: a[2] || (a[2] = E(y(() => {
|
|
@@ -5671,13 +5659,13 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5671
5659
|
placeholder: e.ssoLang[this.appLang].email,
|
|
5672
5660
|
name: "email",
|
|
5673
5661
|
required: ""
|
|
5674
|
-
}, null, 40,
|
|
5662
|
+
}, null, 40, cn), [
|
|
5675
5663
|
[x, i.email]
|
|
5676
5664
|
]),
|
|
5677
|
-
|
|
5665
|
+
ln
|
|
5678
5666
|
]),
|
|
5679
|
-
t("div",
|
|
5680
|
-
|
|
5667
|
+
t("div", dn, [
|
|
5668
|
+
pn,
|
|
5681
5669
|
k(t("input", {
|
|
5682
5670
|
"onUpdate:modelValue": a[3] || (a[3] = (s) => i.username = s),
|
|
5683
5671
|
onKeydown: a[4] || (a[4] = E(y(() => {
|
|
@@ -5691,13 +5679,13 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5691
5679
|
required: "",
|
|
5692
5680
|
disabled: i.usernameRegister,
|
|
5693
5681
|
class: b({ "input-disabled": i.usernameRegister })
|
|
5694
|
-
}, null, 42,
|
|
5682
|
+
}, null, 42, un), [
|
|
5695
5683
|
[x, i.username]
|
|
5696
5684
|
]),
|
|
5697
|
-
|
|
5685
|
+
_n
|
|
5698
5686
|
]),
|
|
5699
|
-
t("div",
|
|
5700
|
-
|
|
5687
|
+
t("div", mn, [
|
|
5688
|
+
gn,
|
|
5701
5689
|
k(t("input", {
|
|
5702
5690
|
"onUpdate:modelValue": a[5] || (a[5] = (s) => i.password = s),
|
|
5703
5691
|
type: i.revealPassword ? "text" : "password",
|
|
@@ -5705,78 +5693,78 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5705
5693
|
name: "password",
|
|
5706
5694
|
required: "",
|
|
5707
5695
|
minlength: "8"
|
|
5708
|
-
}, null, 8,
|
|
5696
|
+
}, null, 8, hn), [
|
|
5709
5697
|
[K, i.password]
|
|
5710
5698
|
]),
|
|
5711
5699
|
t("em", {
|
|
5712
5700
|
onClick: a[6] || (a[6] = (s) => i.revealPassword = !i.revealPassword),
|
|
5713
5701
|
class: "pointer"
|
|
5714
5702
|
}, [
|
|
5715
|
-
k(t("img",
|
|
5703
|
+
k(t("img", fn, null, 512), [
|
|
5716
5704
|
[I, !i.revealPassword]
|
|
5717
5705
|
]),
|
|
5718
|
-
k(t("img",
|
|
5706
|
+
k(t("img", vn, null, 512), [
|
|
5719
5707
|
[I, i.revealPassword]
|
|
5720
5708
|
])
|
|
5721
5709
|
])
|
|
5722
5710
|
]),
|
|
5723
|
-
t("button",
|
|
5724
|
-
i.submitted ? (c(), l("span",
|
|
5711
|
+
t("button", kn, [
|
|
5712
|
+
i.submitted ? (c(), l("span", yn)) : (c(), l("span", bn, p(i.formButtonText), 1))
|
|
5725
5713
|
])
|
|
5726
5714
|
])) : h("", !0),
|
|
5727
|
-
|
|
5715
|
+
wn,
|
|
5728
5716
|
e.displayAppleLogin ? (c(), l("a", {
|
|
5729
5717
|
key: 2,
|
|
5730
5718
|
onClick: a[7] || (a[7] = (...s) => e.appleLogin && e.appleLogin(...s)),
|
|
5731
5719
|
class: "button-center button button-90 google-button pointer"
|
|
5732
5720
|
}, [
|
|
5733
|
-
|
|
5734
|
-
e.appleLoad ? (c(), l("span",
|
|
5721
|
+
zn,
|
|
5722
|
+
e.appleLoad ? (c(), l("span", Sn)) : (c(), l("span", Ln, p(e.ssoLang[this.appLang].sign_up_with) + " Apple", 1))
|
|
5735
5723
|
])) : h("", !0),
|
|
5736
5724
|
t("a", {
|
|
5737
5725
|
onClick: a[8] || (a[8] = (...s) => e.googleLogin && e.googleLogin(...s)),
|
|
5738
5726
|
class: "button-center button button-90 google-button pointer"
|
|
5739
5727
|
}, [
|
|
5740
|
-
|
|
5741
|
-
e.googleLoad ? (c(), l("span",
|
|
5728
|
+
Cn,
|
|
5729
|
+
e.googleLoad ? (c(), l("span", jn)) : (c(), l("span", Tn, p(e.ssoLang[this.appLang].sign_up_with) + " Google", 1))
|
|
5742
5730
|
]),
|
|
5743
5731
|
e.displayFacebookLogin ? (c(), l("a", {
|
|
5744
5732
|
key: 3,
|
|
5745
5733
|
onClick: a[9] || (a[9] = (...s) => e.facebookLogin && e.facebookLogin(...s)),
|
|
5746
5734
|
class: "button-center button button-90 google-button pointer"
|
|
5747
5735
|
}, [
|
|
5748
|
-
|
|
5749
|
-
e.facebookLoad ? (c(), l("span",
|
|
5736
|
+
Pn,
|
|
5737
|
+
e.facebookLoad ? (c(), l("span", In)) : (c(), l("span", An, p(e.ssoLang[this.appLang].sign_up_with) + " Facebook", 1))
|
|
5750
5738
|
])) : h("", !0),
|
|
5751
5739
|
i.emailLogin ? h("", !0) : (c(), l("a", {
|
|
5752
5740
|
key: 4,
|
|
5753
5741
|
onClick: a[10] || (a[10] = (s) => i.emailLogin = !0),
|
|
5754
5742
|
class: "button-center button button-90 google-button pointer"
|
|
5755
5743
|
}, [
|
|
5756
|
-
|
|
5744
|
+
En,
|
|
5757
5745
|
t("span", null, p(e.ssoLang[this.appLang].sign_up_with) + " Email", 1)
|
|
5758
5746
|
])),
|
|
5759
|
-
|
|
5760
|
-
t("p",
|
|
5747
|
+
xn,
|
|
5748
|
+
t("p", qn, [
|
|
5761
5749
|
f(p(e.ssoLang[this.appLang].terms_by_registering) + " ", 1),
|
|
5762
|
-
|
|
5763
|
-
t("a",
|
|
5750
|
+
Mn,
|
|
5751
|
+
t("a", Rn, p(e.ssoLang[this.appLang].terms_of_service), 1),
|
|
5764
5752
|
f(" " + p(e.ssoLang[this.appLang].and) + " ", 1),
|
|
5765
|
-
t("a",
|
|
5753
|
+
t("a", Nn, p(e.ssoLang[this.appLang].privacy_policy), 1)
|
|
5766
5754
|
]),
|
|
5767
|
-
|
|
5755
|
+
Vn,
|
|
5768
5756
|
n.isModal ? (c(), l("div", {
|
|
5769
5757
|
key: 6,
|
|
5770
5758
|
class: "page-login-links",
|
|
5771
5759
|
onClick: a[11] || (a[11] = (...s) => r.loginAccountModal && r.loginAccountModal(...s))
|
|
5772
5760
|
}, [
|
|
5773
|
-
t("a",
|
|
5761
|
+
t("a", Dn, [
|
|
5774
5762
|
f(p(e.ssoLang[this.appLang].or) + " ", 1),
|
|
5775
|
-
|
|
5763
|
+
Un,
|
|
5776
5764
|
f(" " + p(e.ssoLang[this.appLang].sign_in_with_new), 1)
|
|
5777
5765
|
]),
|
|
5778
|
-
|
|
5779
|
-
])) : (c(), l("div",
|
|
5766
|
+
Kn
|
|
5767
|
+
])) : (c(), l("div", On, [
|
|
5780
5768
|
v(u, {
|
|
5781
5769
|
class: "create float-right",
|
|
5782
5770
|
to: "/verify"
|
|
@@ -5795,11 +5783,11 @@ function Kn(e, a, n, o, i, r) {
|
|
|
5795
5783
|
]),
|
|
5796
5784
|
_: 1
|
|
5797
5785
|
}),
|
|
5798
|
-
|
|
5786
|
+
Bn
|
|
5799
5787
|
]))
|
|
5800
5788
|
], 36);
|
|
5801
5789
|
}
|
|
5802
|
-
const ve = /* @__PURE__ */ T(
|
|
5790
|
+
const ve = /* @__PURE__ */ T(Ya, [["render", Hn]]), Fn = {
|
|
5803
5791
|
name: "AuthVerify",
|
|
5804
5792
|
mixins: [z],
|
|
5805
5793
|
props: {
|
|
@@ -5862,43 +5850,43 @@ const ve = /* @__PURE__ */ T(Xa, [["render", Kn]]), Hn = {
|
|
|
5862
5850
|
deep: !0
|
|
5863
5851
|
}
|
|
5864
5852
|
}
|
|
5865
|
-
}, C = (e) => (O("data-v-2fd511e2"), e = e(), B(), e),
|
|
5853
|
+
}, C = (e) => (O("data-v-2fd511e2"), e = e(), B(), e), Qn = /* @__PURE__ */ C(() => /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
5866
5854
|
/* @__PURE__ */ t("img", {
|
|
5867
5855
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
5868
5856
|
class: "responsive-image",
|
|
5869
5857
|
style: { width: "35%" }
|
|
5870
5858
|
})
|
|
5871
|
-
], -1)),
|
|
5872
|
-
|
|
5873
|
-
],
|
|
5859
|
+
], -1)), $n = [
|
|
5860
|
+
Qn
|
|
5861
|
+
], Gn = {
|
|
5874
5862
|
class: "bold no-bottom center-text",
|
|
5875
5863
|
style: { "margin-top": "63px" }
|
|
5876
|
-
},
|
|
5864
|
+
}, 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" } }, [
|
|
5877
5865
|
/* @__PURE__ */ t("img", {
|
|
5878
5866
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
5879
5867
|
class: "responsive-image",
|
|
5880
5868
|
style: { width: "80%" }
|
|
5881
5869
|
})
|
|
5882
|
-
], -1)),
|
|
5870
|
+
], -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" } }, [
|
|
5883
5871
|
/* @__PURE__ */ t("img", {
|
|
5884
5872
|
src: "https://cdn.tapni.co/icons/password2.png",
|
|
5885
5873
|
class: "responsive-image",
|
|
5886
5874
|
style: { width: "100%" }
|
|
5887
5875
|
})
|
|
5888
|
-
], -1)),
|
|
5876
|
+
], -1)), nt = ["placeholder"], tt = /* @__PURE__ */ C(() => /* @__PURE__ */ t("em", null, null, -1)), it = {
|
|
5889
5877
|
type: "submit",
|
|
5890
5878
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
5891
|
-
},
|
|
5879
|
+
}, ot = {
|
|
5892
5880
|
key: 0,
|
|
5893
5881
|
class: "uppercase"
|
|
5894
|
-
},
|
|
5882
|
+
}, rt = {
|
|
5895
5883
|
key: 1,
|
|
5896
5884
|
class: "button--loading button__loader"
|
|
5897
|
-
},
|
|
5885
|
+
}, 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 = {
|
|
5898
5886
|
key: 1,
|
|
5899
5887
|
class: "page-login-links"
|
|
5900
|
-
},
|
|
5901
|
-
function
|
|
5888
|
+
}, _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));
|
|
5889
|
+
function ft(e, a, n, o, i, r) {
|
|
5902
5890
|
const u = V("router-link");
|
|
5903
5891
|
return c(), l("form", {
|
|
5904
5892
|
class: "page-login content-boxed content-boxed-padding",
|
|
@@ -5910,11 +5898,11 @@ function ht(e, a, n, o, i, r) {
|
|
|
5910
5898
|
onClick: a[0] || (a[0] = (...s) => r.close && r.close(...s)),
|
|
5911
5899
|
class: "color-black pull-right pointer",
|
|
5912
5900
|
style: { "margin-top": "0px", position: "absolute", right: "-20px", "text-align": "right" }
|
|
5913
|
-
},
|
|
5914
|
-
t("h1",
|
|
5915
|
-
|
|
5916
|
-
t("div",
|
|
5917
|
-
|
|
5901
|
+
}, $n)) : h("", !0),
|
|
5902
|
+
t("h1", Gn, p(e.ssoLang[this.appLang].verify_account), 1),
|
|
5903
|
+
Wn,
|
|
5904
|
+
t("div", Xn, [
|
|
5905
|
+
Yn,
|
|
5918
5906
|
k(t("input", {
|
|
5919
5907
|
id: "emailInput",
|
|
5920
5908
|
"onUpdate:modelValue": a[1] || (a[1] = (s) => i.email = s),
|
|
@@ -5923,13 +5911,13 @@ function ht(e, a, n, o, i, r) {
|
|
|
5923
5911
|
type: "email",
|
|
5924
5912
|
placeholder: e.ssoLang[this.appLang].email,
|
|
5925
5913
|
required: ""
|
|
5926
|
-
}, null, 40,
|
|
5914
|
+
}, null, 40, Zn), [
|
|
5927
5915
|
[x, i.email]
|
|
5928
5916
|
]),
|
|
5929
|
-
|
|
5917
|
+
Jn
|
|
5930
5918
|
]),
|
|
5931
|
-
t("div",
|
|
5932
|
-
|
|
5919
|
+
t("div", et, [
|
|
5920
|
+
at,
|
|
5933
5921
|
k(t("input", {
|
|
5934
5922
|
id: "codeInput",
|
|
5935
5923
|
"onUpdate:modelValue": a[3] || (a[3] = (s) => i.code = s),
|
|
@@ -5938,34 +5926,34 @@ function ht(e, a, n, o, i, r) {
|
|
|
5938
5926
|
type: "tel",
|
|
5939
5927
|
placeholder: e.ssoLang[this.appLang].code,
|
|
5940
5928
|
required: ""
|
|
5941
|
-
}, null, 40,
|
|
5929
|
+
}, null, 40, nt), [
|
|
5942
5930
|
[x, i.code]
|
|
5943
5931
|
]),
|
|
5944
|
-
|
|
5932
|
+
tt
|
|
5945
5933
|
]),
|
|
5946
|
-
t("button",
|
|
5947
|
-
i.submitted ? (c(), l("span",
|
|
5934
|
+
t("button", it, [
|
|
5935
|
+
i.submitted ? (c(), l("span", rt)) : (c(), l("span", ot, p(e.ssoLang[this.appLang].verify_account), 1))
|
|
5948
5936
|
]),
|
|
5949
|
-
|
|
5950
|
-
t("p",
|
|
5937
|
+
st,
|
|
5938
|
+
t("p", ct, [
|
|
5951
5939
|
t("span", {
|
|
5952
5940
|
innerHTML: e.ssoLang[this.appLang].verify_account_p1
|
|
5953
|
-
}, null, 8,
|
|
5954
|
-
|
|
5941
|
+
}, null, 8, lt),
|
|
5942
|
+
dt
|
|
5955
5943
|
]),
|
|
5956
|
-
|
|
5944
|
+
pt,
|
|
5957
5945
|
n.isModal ? (c(), l("div", {
|
|
5958
5946
|
key: 2,
|
|
5959
5947
|
class: "page-login-links",
|
|
5960
5948
|
onClick: a[5] || (a[5] = (...s) => r.registerAccountModal && r.registerAccountModal(...s))
|
|
5961
5949
|
}, [
|
|
5962
|
-
t("a",
|
|
5950
|
+
t("a", mt, [
|
|
5963
5951
|
f(p(e.ssoLang[this.appLang].or) + " ", 1),
|
|
5964
|
-
|
|
5952
|
+
gt,
|
|
5965
5953
|
f(" " + p(e.ssoLang[this.appLang].create_new_account), 1)
|
|
5966
5954
|
]),
|
|
5967
|
-
|
|
5968
|
-
])) : (c(), l("div",
|
|
5955
|
+
ht
|
|
5956
|
+
])) : (c(), l("div", ut, [
|
|
5969
5957
|
v(u, {
|
|
5970
5958
|
class: "create float-right",
|
|
5971
5959
|
to: "/register"
|
|
@@ -5984,11 +5972,11 @@ function ht(e, a, n, o, i, r) {
|
|
|
5984
5972
|
]),
|
|
5985
5973
|
_: 1
|
|
5986
5974
|
}),
|
|
5987
|
-
|
|
5975
|
+
_t
|
|
5988
5976
|
]))
|
|
5989
5977
|
], 36);
|
|
5990
5978
|
}
|
|
5991
|
-
const ke = /* @__PURE__ */ T(
|
|
5979
|
+
const ke = /* @__PURE__ */ T(Fn, [["render", ft], ["__scopeId", "data-v-2fd511e2"]]), vt = {
|
|
5992
5980
|
name: "AuthReset",
|
|
5993
5981
|
mixins: [z],
|
|
5994
5982
|
data() {
|
|
@@ -6042,124 +6030,124 @@ const ke = /* @__PURE__ */ T(Hn, [["render", ht], ["__scopeId", "data-v-2fd511e2
|
|
|
6042
6030
|
this.storage.verifyEmail = e;
|
|
6043
6031
|
}
|
|
6044
6032
|
}
|
|
6045
|
-
}, A = (e) => (O("data-v-220c28f9"), e = e(), B(), e),
|
|
6033
|
+
}, A = (e) => (O("data-v-220c28f9"), e = e(), B(), e), kt = {
|
|
6046
6034
|
class: "bold no-bottom center-text",
|
|
6047
6035
|
style: { "margin-top": "63px" }
|
|
6048
|
-
},
|
|
6036
|
+
}, 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" } }, [
|
|
6049
6037
|
/* @__PURE__ */ t("img", {
|
|
6050
6038
|
src: "https://cdn.tapni.co/icons/mail.png",
|
|
6051
6039
|
class: "responsive-image",
|
|
6052
6040
|
style: { width: "80%" }
|
|
6053
6041
|
})
|
|
6054
|
-
], -1)),
|
|
6042
|
+
], -1)), zt = ["placeholder"], Lt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("em", null, null, -1)), St = {
|
|
6055
6043
|
type: "submit",
|
|
6056
6044
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
6057
|
-
},
|
|
6045
|
+
}, Ct = {
|
|
6058
6046
|
key: 0,
|
|
6059
6047
|
class: "uppercase"
|
|
6060
|
-
},
|
|
6048
|
+
}, Tt = {
|
|
6061
6049
|
key: 1,
|
|
6062
6050
|
class: "button--loading button__loader"
|
|
6063
|
-
},
|
|
6051
|
+
}, 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 = {
|
|
6064
6052
|
class: "bold no-bottom center-text",
|
|
6065
6053
|
style: { "margin-top": "63px" }
|
|
6066
|
-
},
|
|
6054
|
+
}, 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" } }, [
|
|
6067
6055
|
/* @__PURE__ */ t("img", {
|
|
6068
6056
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
6069
6057
|
class: "responsive-image",
|
|
6070
6058
|
style: { width: "50%" }
|
|
6071
6059
|
})
|
|
6072
|
-
], -1)),
|
|
6060
|
+
], -1)), Ot = ["type", "placeholder"], Bt = {
|
|
6073
6061
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
6074
6062
|
class: "responsive-image password-reveal-icon"
|
|
6075
|
-
},
|
|
6063
|
+
}, Dt = {
|
|
6076
6064
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
6077
6065
|
class: "responsive-image password-reveal-icon"
|
|
6078
|
-
},
|
|
6066
|
+
}, Ut = { class: "page-login-field half-top" }, Kt = /* @__PURE__ */ A(() => /* @__PURE__ */ t("i", { style: { "padding-top": "15px" } }, [
|
|
6079
6067
|
/* @__PURE__ */ t("img", {
|
|
6080
6068
|
src: "https://cdn.tapni.co/icons/padlock.png",
|
|
6081
6069
|
class: "responsive-image",
|
|
6082
6070
|
style: { width: "50%" }
|
|
6083
6071
|
})
|
|
6084
|
-
], -1)),
|
|
6072
|
+
], -1)), Ht = ["type", "placeholder"], Ft = {
|
|
6085
6073
|
src: "https://cdn.tapni.co/icons/reveal-password.png",
|
|
6086
6074
|
class: "responsive-image password-reveal-icon"
|
|
6087
|
-
},
|
|
6075
|
+
}, Qt = {
|
|
6088
6076
|
src: "https://cdn.tapni.co/icons/hide-password.png",
|
|
6089
6077
|
class: "responsive-image password-reveal-icon"
|
|
6090
|
-
},
|
|
6078
|
+
}, $t = {
|
|
6091
6079
|
type: "submit",
|
|
6092
6080
|
class: "button black-button google-button bg-tapni-grey button-90 button-center uppercase bold full-top"
|
|
6093
|
-
},
|
|
6081
|
+
}, Gt = {
|
|
6094
6082
|
key: 0,
|
|
6095
6083
|
class: "uppercase"
|
|
6096
|
-
},
|
|
6084
|
+
}, Wt = {
|
|
6097
6085
|
key: 1,
|
|
6098
6086
|
class: "button--loading button__loader"
|
|
6099
|
-
},
|
|
6100
|
-
function
|
|
6087
|
+
}, 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"];
|
|
6088
|
+
function ei(e, a, n, o, i, r) {
|
|
6101
6089
|
const u = V("router-link");
|
|
6102
6090
|
return i.passwordChange ? (c(), l("form", {
|
|
6103
6091
|
key: 1,
|
|
6104
6092
|
class: "page-login content-boxed content-boxed-padding",
|
|
6105
6093
|
onSubmit: a[7] || (a[7] = y((...s) => r.changePw && r.changePw(...s), ["prevent"]))
|
|
6106
6094
|
}, [
|
|
6107
|
-
t("h3",
|
|
6108
|
-
t("p",
|
|
6109
|
-
t("div",
|
|
6110
|
-
|
|
6095
|
+
t("h3", Mt, p(e.ssoLang[this.appLang].password_change), 1),
|
|
6096
|
+
t("p", Rt, p(e.ssoLang[this.appLang].password_new), 1),
|
|
6097
|
+
t("div", Nt, [
|
|
6098
|
+
Vt,
|
|
6111
6099
|
k(t("input", {
|
|
6112
6100
|
"onUpdate:modelValue": a[3] || (a[3] = (s) => i.password = s),
|
|
6113
6101
|
type: i.revealPassword ? "text" : "password",
|
|
6114
6102
|
placeholder: e.ssoLang[this.appLang].password,
|
|
6115
6103
|
required: ""
|
|
6116
|
-
}, null, 8,
|
|
6104
|
+
}, null, 8, Ot), [
|
|
6117
6105
|
[K, i.password]
|
|
6118
6106
|
]),
|
|
6119
6107
|
t("em", {
|
|
6120
6108
|
onClick: a[4] || (a[4] = (s) => i.revealPassword = !i.revealPassword)
|
|
6121
6109
|
}, [
|
|
6122
|
-
k(t("img",
|
|
6110
|
+
k(t("img", Bt, null, 512), [
|
|
6123
6111
|
[I, !i.revealPassword]
|
|
6124
6112
|
]),
|
|
6125
|
-
k(t("img",
|
|
6113
|
+
k(t("img", Dt, null, 512), [
|
|
6126
6114
|
[I, i.revealPassword]
|
|
6127
6115
|
])
|
|
6128
6116
|
])
|
|
6129
6117
|
]),
|
|
6130
|
-
t("div",
|
|
6131
|
-
|
|
6118
|
+
t("div", Ut, [
|
|
6119
|
+
Kt,
|
|
6132
6120
|
k(t("input", {
|
|
6133
6121
|
"onUpdate:modelValue": a[5] || (a[5] = (s) => i.passwordRepeat = s),
|
|
6134
6122
|
type: i.revealPassword2 ? "text" : "password",
|
|
6135
6123
|
placeholder: e.ssoLang[this.appLang].password_repeat,
|
|
6136
6124
|
required: ""
|
|
6137
|
-
}, null, 8,
|
|
6125
|
+
}, null, 8, Ht), [
|
|
6138
6126
|
[K, i.passwordRepeat]
|
|
6139
6127
|
]),
|
|
6140
6128
|
t("em", {
|
|
6141
6129
|
onClick: a[6] || (a[6] = (s) => i.revealPassword2 = !i.revealPassword2)
|
|
6142
6130
|
}, [
|
|
6143
|
-
k(t("img",
|
|
6131
|
+
k(t("img", Ft, null, 512), [
|
|
6144
6132
|
[I, !i.revealPassword2]
|
|
6145
6133
|
]),
|
|
6146
|
-
k(t("img",
|
|
6134
|
+
k(t("img", Qt, null, 512), [
|
|
6147
6135
|
[I, i.revealPassword2]
|
|
6148
6136
|
])
|
|
6149
6137
|
])
|
|
6150
6138
|
]),
|
|
6151
|
-
t("button",
|
|
6152
|
-
i.submitted ? (c(), l("span",
|
|
6139
|
+
t("button", $t, [
|
|
6140
|
+
i.submitted ? (c(), l("span", Wt)) : (c(), l("span", Gt, p(e.ssoLang[this.appLang].password_change), 1))
|
|
6153
6141
|
]),
|
|
6154
|
-
|
|
6155
|
-
t("p",
|
|
6142
|
+
Xt,
|
|
6143
|
+
t("p", Yt, [
|
|
6156
6144
|
t("span", {
|
|
6157
6145
|
innerHTML: e.ssoLang[this.appLang].reset_password_p2
|
|
6158
|
-
}, null, 8,
|
|
6146
|
+
}, null, 8, Zt),
|
|
6159
6147
|
f(),
|
|
6160
6148
|
t("a", {
|
|
6161
6149
|
href: "mailto:support@tapni.co?subject=" + e.ssoLang[this.appLang].password_reset_t
|
|
6162
|
-
}, " support@tapni.co", 8,
|
|
6150
|
+
}, " support@tapni.co", 8, Jt)
|
|
6163
6151
|
])
|
|
6164
6152
|
], 32)) : (c(), l("form", {
|
|
6165
6153
|
key: 0,
|
|
@@ -6167,10 +6155,10 @@ function Jt(e, a, n, o, i, r) {
|
|
|
6167
6155
|
onSubmit: a[2] || (a[2] = y((...s) => r.resetEmail && r.resetEmail(...s), ["prevent"])),
|
|
6168
6156
|
autocomplete: "on"
|
|
6169
6157
|
}, [
|
|
6170
|
-
t("h3",
|
|
6171
|
-
|
|
6172
|
-
t("div",
|
|
6173
|
-
|
|
6158
|
+
t("h3", kt, p(e.ssoLang[this.appLang].reset_password), 1),
|
|
6159
|
+
bt,
|
|
6160
|
+
t("div", yt, [
|
|
6161
|
+
wt,
|
|
6174
6162
|
k(t("input", {
|
|
6175
6163
|
id: "emailInput",
|
|
6176
6164
|
"onUpdate:modelValue": a[0] || (a[0] = (s) => i.email = s),
|
|
@@ -6179,25 +6167,25 @@ function Jt(e, a, n, o, i, r) {
|
|
|
6179
6167
|
type: "email",
|
|
6180
6168
|
placeholder: e.ssoLang[this.appLang].email,
|
|
6181
6169
|
required: ""
|
|
6182
|
-
}, null, 40,
|
|
6170
|
+
}, null, 40, zt), [
|
|
6183
6171
|
[x, i.email]
|
|
6184
6172
|
]),
|
|
6185
|
-
|
|
6173
|
+
Lt
|
|
6186
6174
|
]),
|
|
6187
|
-
t("button",
|
|
6188
|
-
i.submitted ? (c(), l("span",
|
|
6175
|
+
t("button", St, [
|
|
6176
|
+
i.submitted ? (c(), l("span", Tt)) : (c(), l("span", Ct, p(e.ssoLang[this.appLang].reset_password), 1))
|
|
6189
6177
|
]),
|
|
6190
|
-
|
|
6191
|
-
t("p",
|
|
6178
|
+
jt,
|
|
6179
|
+
t("p", Pt, [
|
|
6192
6180
|
t("span", {
|
|
6193
6181
|
innerHTML: e.ssoLang[this.appLang].reset_password_p1
|
|
6194
|
-
}, null, 8,
|
|
6182
|
+
}, null, 8, At),
|
|
6195
6183
|
t("a", {
|
|
6196
6184
|
href: "mailto:support@tapni.co?subject=" + e.ssoLang[this.appLang].password_reset_t
|
|
6197
|
-
}, " support@tapni.co", 8,
|
|
6185
|
+
}, " support@tapni.co", 8, It)
|
|
6198
6186
|
]),
|
|
6199
|
-
|
|
6200
|
-
t("div",
|
|
6187
|
+
Et,
|
|
6188
|
+
t("div", xt, [
|
|
6201
6189
|
v(u, {
|
|
6202
6190
|
class: "create float-right",
|
|
6203
6191
|
to: "/verify"
|
|
@@ -6216,11 +6204,11 @@ function Jt(e, a, n, o, i, r) {
|
|
|
6216
6204
|
]),
|
|
6217
6205
|
_: 1
|
|
6218
6206
|
}),
|
|
6219
|
-
|
|
6207
|
+
qt
|
|
6220
6208
|
])
|
|
6221
6209
|
], 32));
|
|
6222
6210
|
}
|
|
6223
|
-
const be = /* @__PURE__ */ T(
|
|
6211
|
+
const be = /* @__PURE__ */ T(vt, [["render", ei], ["__scopeId", "data-v-220c28f9"]]), ai = {
|
|
6224
6212
|
name: "AuthCallback",
|
|
6225
6213
|
mixins: [G, W, z],
|
|
6226
6214
|
data() {
|
|
@@ -6240,28 +6228,28 @@ const be = /* @__PURE__ */ T(ft, [["render", Jt], ["__scopeId", "data-v-220c28f9
|
|
|
6240
6228
|
return e = e.replace("http", "tapni"), e = e.replace("https", "tapni"), window.open(e);
|
|
6241
6229
|
}
|
|
6242
6230
|
}
|
|
6243
|
-
},
|
|
6231
|
+
}, ni = {
|
|
6244
6232
|
key: 0,
|
|
6245
6233
|
style: { "text-align": "center", width: "80%", margin: "0 auto", "margin-top": "260px" }
|
|
6246
|
-
},
|
|
6234
|
+
}, ti = /* @__PURE__ */ t("br", null, null, -1), ii = {
|
|
6247
6235
|
key: 1,
|
|
6248
6236
|
style: { "text-align": "center", width: "80%", margin: "0 auto", "margin-top": "260px" }
|
|
6249
6237
|
};
|
|
6250
|
-
function
|
|
6238
|
+
function oi(e, a, n, o, i, r) {
|
|
6251
6239
|
return c(), l("div", null, [
|
|
6252
|
-
(e.$route.query.platform === "android" || e.$route.query.platform === "ios") && !e.isNative ? (c(), l("h5",
|
|
6240
|
+
(e.$route.query.platform === "android" || e.$route.query.platform === "ios") && !e.isNative ? (c(), l("h5", ni, [
|
|
6253
6241
|
f(p(e.ssoLang[this.appLang].you_will_be_redirected), 1),
|
|
6254
|
-
|
|
6242
|
+
ti,
|
|
6255
6243
|
f(" " + p(e.ssoLang[this.appLang].if_redirect_not_directly) + ", ", 1),
|
|
6256
6244
|
t("span", {
|
|
6257
6245
|
onClick: a[0] || (a[0] = (...u) => r.inAppRedirect && r.inAppRedirect(...u)),
|
|
6258
6246
|
style: { color: "blue", cursor: "pointer" }
|
|
6259
6247
|
}, p(e.ssoLang[this.appLang].click_here), 1),
|
|
6260
6248
|
f(".")
|
|
6261
|
-
])) : (c(), l("h4",
|
|
6249
|
+
])) : (c(), l("h4", ii, p(e.ssoLang[this.appLang].please_wait), 1))
|
|
6262
6250
|
]);
|
|
6263
6251
|
}
|
|
6264
|
-
const ye = /* @__PURE__ */ T(
|
|
6252
|
+
const ye = /* @__PURE__ */ T(ai, [["render", oi]]), ri = {
|
|
6265
6253
|
name: "ModalOverlay",
|
|
6266
6254
|
mixins: [z],
|
|
6267
6255
|
data() {
|
|
@@ -6286,13 +6274,13 @@ const ye = /* @__PURE__ */ T(ei, [["render", ii]]), oi = {
|
|
|
6286
6274
|
}
|
|
6287
6275
|
}
|
|
6288
6276
|
};
|
|
6289
|
-
function
|
|
6277
|
+
function si(e, a, n, o, i, r) {
|
|
6290
6278
|
return c(), l("div", {
|
|
6291
6279
|
class: b({ "pointer delete-menu": !0, "delete-menu-active": i.toggle }),
|
|
6292
6280
|
onClick: a[0] || (a[0] = (...u) => r.toggleEmit && r.toggleEmit(...u))
|
|
6293
6281
|
}, null, 2);
|
|
6294
6282
|
}
|
|
6295
|
-
const we = /* @__PURE__ */ T(
|
|
6283
|
+
const we = /* @__PURE__ */ T(ri, [["render", si], ["__scopeId", "data-v-a128c2fa"]]), ci = {
|
|
6296
6284
|
name: "SSO",
|
|
6297
6285
|
mixins: [$, G, W, z],
|
|
6298
6286
|
data() {
|
|
@@ -6335,23 +6323,23 @@ const we = /* @__PURE__ */ T(oi, [["render", ri], ["__scopeId", "data-v-a128c2fa
|
|
|
6335
6323
|
this.toggle = !this.toggle;
|
|
6336
6324
|
}
|
|
6337
6325
|
}
|
|
6338
|
-
},
|
|
6326
|
+
}, li = (e) => (O("data-v-256337c2"), e = e(), B(), e), di = /* @__PURE__ */ li(() => /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
6339
6327
|
/* @__PURE__ */ t("img", {
|
|
6340
6328
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
6341
6329
|
class: "responsive-image",
|
|
6342
6330
|
style: { width: "45%" }
|
|
6343
6331
|
})
|
|
6344
|
-
], -1)),
|
|
6345
|
-
|
|
6346
|
-
],
|
|
6332
|
+
], -1)), pi = [
|
|
6333
|
+
di
|
|
6334
|
+
], ui = { class: "bold center-text color-black half-top half-bottom" }, _i = ["placeholder"], mi = {
|
|
6347
6335
|
type: "submit",
|
|
6348
6336
|
class: "button black-button white-button button-full",
|
|
6349
6337
|
style: { margin: "0 auto", "margin-top": "25px", "margin-bottom": "30px" }
|
|
6350
|
-
},
|
|
6338
|
+
}, gi = { key: 0 }, hi = {
|
|
6351
6339
|
key: 1,
|
|
6352
6340
|
class: "button--loading button__loader"
|
|
6353
6341
|
};
|
|
6354
|
-
function
|
|
6342
|
+
function fi(e, a, n, o, i, r) {
|
|
6355
6343
|
return c(), l("form", {
|
|
6356
6344
|
onSubmit: a[3] || (a[3] = y((...u) => r.submit && r.submit(...u), ["prevent"])),
|
|
6357
6345
|
class: b(["menu-wrapper menu-light menu-modal center-text activate-page", { "active-menu": i.toggle }]),
|
|
@@ -6361,8 +6349,8 @@ function hi(e, a, n, o, i, r) {
|
|
|
6361
6349
|
onClick: a[0] || (a[0] = (...u) => r.forceClose && r.forceClose(...u)),
|
|
6362
6350
|
class: "color-black pull-right pointer",
|
|
6363
6351
|
style: { "margin-top": "5px", position: "absolute", right: "5px" }
|
|
6364
|
-
},
|
|
6365
|
-
t("h3",
|
|
6352
|
+
}, pi),
|
|
6353
|
+
t("h3", ui, p(e.ssoLang[e.appLang].enter_company_email), 1),
|
|
6366
6354
|
t("div", null, [
|
|
6367
6355
|
k(t("input", {
|
|
6368
6356
|
type: "text",
|
|
@@ -6377,16 +6365,16 @@ function hi(e, a, n, o, i, r) {
|
|
|
6377
6365
|
required: "",
|
|
6378
6366
|
onKeydown: a[2] || (a[2] = E(y(() => {
|
|
6379
6367
|
}, ["prevent"]), ["space"]))
|
|
6380
|
-
}, null, 40,
|
|
6368
|
+
}, null, 40, _i), [
|
|
6381
6369
|
[x, i.email]
|
|
6382
6370
|
])
|
|
6383
6371
|
]),
|
|
6384
|
-
t("button",
|
|
6385
|
-
i.loading ? (c(), l("span",
|
|
6372
|
+
t("button", mi, [
|
|
6373
|
+
i.loading ? (c(), l("span", hi)) : (c(), l("span", gi, p(e.ssoLang[e.appLang].continue), 1))
|
|
6386
6374
|
])
|
|
6387
6375
|
], 34);
|
|
6388
6376
|
}
|
|
6389
|
-
const ze = /* @__PURE__ */ T(
|
|
6377
|
+
const ze = /* @__PURE__ */ T(ci, [["render", fi], ["__scopeId", "data-v-256337c2"]]), vi = {
|
|
6390
6378
|
name: "SSOPick",
|
|
6391
6379
|
mixins: [$, G, W, z],
|
|
6392
6380
|
data() {
|
|
@@ -6421,34 +6409,34 @@ const ze = /* @__PURE__ */ T(si, [["render", hi], ["__scopeId", "data-v-256337c2
|
|
|
6421
6409
|
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;
|
|
6422
6410
|
}
|
|
6423
6411
|
}
|
|
6424
|
-
}, X = (e) => (O("data-v-33bfb54b"), e = e(), B(), e),
|
|
6412
|
+
}, X = (e) => (O("data-v-33bfb54b"), e = e(), B(), e), ki = /* @__PURE__ */ X(() => /* @__PURE__ */ t("i", { class: "font-17 color-black" }, [
|
|
6425
6413
|
/* @__PURE__ */ t("img", {
|
|
6426
6414
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
6427
6415
|
class: "responsive-image",
|
|
6428
6416
|
style: { width: "45%" }
|
|
6429
6417
|
})
|
|
6430
|
-
], -1)),
|
|
6431
|
-
|
|
6432
|
-
],
|
|
6418
|
+
], -1)), bi = [
|
|
6419
|
+
ki
|
|
6420
|
+
], yi = { class: "bold center-text color-black half-top half-bottom" }, wi = /* @__PURE__ */ X(() => /* @__PURE__ */ t("img", {
|
|
6433
6421
|
src: "https://cdn.tapni.co/icons/azure.png",
|
|
6434
6422
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
6435
|
-
}, null, -1)),
|
|
6423
|
+
}, null, -1)), zi = { key: 0 }, Li = {
|
|
6436
6424
|
key: 1,
|
|
6437
6425
|
class: "button--loading button__loader"
|
|
6438
|
-
},
|
|
6426
|
+
}, Si = /* @__PURE__ */ X(() => /* @__PURE__ */ t("img", {
|
|
6439
6427
|
src: "https://cdn.tapni.co/icons/okta.png",
|
|
6440
6428
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
6441
|
-
}, null, -1)),
|
|
6429
|
+
}, null, -1)), Ci = { key: 0 }, Ti = {
|
|
6442
6430
|
key: 1,
|
|
6443
6431
|
class: "button--loading button__loader"
|
|
6444
|
-
},
|
|
6432
|
+
}, ji = /* @__PURE__ */ X(() => /* @__PURE__ */ t("img", {
|
|
6445
6433
|
src: "https://cdn.tapni.co/icons/saml.png",
|
|
6446
6434
|
style: { position: "absolute", "margin-left": "-11px", padding: "8px 0", height: "100%" }
|
|
6447
|
-
}, null, -1)),
|
|
6435
|
+
}, null, -1)), Pi = { key: 0 }, Ai = {
|
|
6448
6436
|
key: 1,
|
|
6449
6437
|
class: "button--loading button__loader"
|
|
6450
6438
|
};
|
|
6451
|
-
function
|
|
6439
|
+
function Ii(e, a, n, o, i, r) {
|
|
6452
6440
|
var u, s, _;
|
|
6453
6441
|
return c(), l("form", {
|
|
6454
6442
|
onSubmit: a[4] || (a[4] = y(() => {
|
|
@@ -6460,35 +6448,35 @@ function Ai(e, a, n, o, i, r) {
|
|
|
6460
6448
|
onClick: a[0] || (a[0] = (...L) => r.forceClose && r.forceClose(...L)),
|
|
6461
6449
|
class: "color-black pull-right pointer",
|
|
6462
6450
|
style: { "margin-top": "5px", position: "absolute", right: "5px" }
|
|
6463
|
-
},
|
|
6464
|
-
t("h3",
|
|
6451
|
+
}, bi),
|
|
6452
|
+
t("h3", yi, p(e.ssoLang[e.appLang].select_sign_method), 1),
|
|
6465
6453
|
(u = i.sso) != null && u.azure ? (c(), l("a", {
|
|
6466
6454
|
key: 0,
|
|
6467
6455
|
onClick: a[1] || (a[1] = (L) => r.ssoLogin("azure")),
|
|
6468
6456
|
class: "button-center button black-button button-90 google-button pointer"
|
|
6469
6457
|
}, [
|
|
6470
|
-
|
|
6471
|
-
i.azureLoad ? (c(), l("span",
|
|
6458
|
+
wi,
|
|
6459
|
+
i.azureLoad ? (c(), l("span", Li)) : (c(), l("span", zi, p(e.ssoLang[e.appLang].sign_in_with) + " Azure", 1))
|
|
6472
6460
|
])) : h("", !0),
|
|
6473
6461
|
(s = i.sso) != null && s.okta ? (c(), l("a", {
|
|
6474
6462
|
key: 1,
|
|
6475
6463
|
onClick: a[2] || (a[2] = (L) => r.ssoLogin("okta")),
|
|
6476
6464
|
class: "button-center button black-button button-90 google-button pointer"
|
|
6477
6465
|
}, [
|
|
6478
|
-
|
|
6479
|
-
i.oktaLoad ? (c(), l("span",
|
|
6466
|
+
Si,
|
|
6467
|
+
i.oktaLoad ? (c(), l("span", Ti)) : (c(), l("span", Ci, p(e.ssoLang[e.appLang].sign_in_with) + " Okta", 1))
|
|
6480
6468
|
])) : h("", !0),
|
|
6481
6469
|
(_ = i.sso) != null && _.saml ? (c(), l("a", {
|
|
6482
6470
|
key: 2,
|
|
6483
6471
|
onClick: a[3] || (a[3] = (L) => r.ssoLogin("saml")),
|
|
6484
6472
|
class: "button-center button black-button button-90 google-button pointer"
|
|
6485
6473
|
}, [
|
|
6486
|
-
|
|
6487
|
-
i.samlLoad ? (c(), l("span",
|
|
6474
|
+
ji,
|
|
6475
|
+
i.samlLoad ? (c(), l("span", Ai)) : (c(), l("span", Pi, p(e.ssoLang[e.appLang].sign_in_with) + " SAML", 1))
|
|
6488
6476
|
])) : h("", !0)
|
|
6489
6477
|
], 34);
|
|
6490
6478
|
}
|
|
6491
|
-
const Le = /* @__PURE__ */ T(
|
|
6479
|
+
const Le = /* @__PURE__ */ T(vi, [["render", Ii], ["__scopeId", "data-v-33bfb54b"]]), Ei = {
|
|
6492
6480
|
name: "LinkIcon",
|
|
6493
6481
|
mixins: [z],
|
|
6494
6482
|
props: {
|
|
@@ -6560,8 +6548,8 @@ const Le = /* @__PURE__ */ T(fi, [["render", Ai], ["__scopeId", "data-v-33bfb54b
|
|
|
6560
6548
|
}
|
|
6561
6549
|
},
|
|
6562
6550
|
methods: {}
|
|
6563
|
-
},
|
|
6564
|
-
function
|
|
6551
|
+
}, xi = ["src", "alt"], qi = ["src", "alt"], Mi = ["src", "alt"], Ri = ["src", "alt"];
|
|
6552
|
+
function Ni(e, a, n, o, i, r) {
|
|
6565
6553
|
var u, s;
|
|
6566
6554
|
return c(), l("a", {
|
|
6567
6555
|
class: b(["disable-select", n.linkStyle + (n.disabled ? " opacity-50" : "")]),
|
|
@@ -6584,21 +6572,21 @@ function Ri(e, a, n, o, i, r) {
|
|
|
6584
6572
|
alt: n.data.text,
|
|
6585
6573
|
onLoad: a[0] || (a[0] = (_) => e.$emit("loaded")),
|
|
6586
6574
|
onError: a[1] || (a[1] = (_) => e.$emit("loaded"))
|
|
6587
|
-
}, null, 40,
|
|
6575
|
+
}, null, 40, xi)) : !n.data.custom_icon && n.data.type === "customlink" && n.linkAdding ? (c(), l("img", {
|
|
6588
6576
|
key: 1,
|
|
6589
6577
|
src: "https://cdn.tapni.co/icons/custom-icon-128.gif",
|
|
6590
6578
|
class: "responsive-image",
|
|
6591
6579
|
alt: n.data.text,
|
|
6592
6580
|
onLoad: a[2] || (a[2] = (_) => e.$emit("loaded")),
|
|
6593
6581
|
onError: a[3] || (a[3] = (_) => e.$emit("loaded"))
|
|
6594
|
-
}, null, 40,
|
|
6582
|
+
}, null, 40, qi)) : !n.data.custom_icon && n.data.type === "customlink" && !n.linkAdding ? (c(), l("img", {
|
|
6595
6583
|
key: 2,
|
|
6596
6584
|
src: "https://cdn.tapni.co/icons/customlink.png",
|
|
6597
6585
|
class: "responsive-image",
|
|
6598
6586
|
alt: n.data.text,
|
|
6599
6587
|
onLoad: a[4] || (a[4] = (_) => e.$emit("loaded")),
|
|
6600
6588
|
onError: a[5] || (a[5] = (_) => e.$emit("loaded"))
|
|
6601
|
-
}, null, 40,
|
|
6589
|
+
}, null, 40, Mi)) : (c(), l("img", {
|
|
6602
6590
|
key: 3,
|
|
6603
6591
|
src: n.data.style.custom_icon,
|
|
6604
6592
|
style: { "border-radius": "22.46%" },
|
|
@@ -6606,7 +6594,7 @@ function Ri(e, a, n, o, i, r) {
|
|
|
6606
6594
|
alt: n.data.text,
|
|
6607
6595
|
onLoad: a[6] || (a[6] = (_) => e.$emit("loaded")),
|
|
6608
6596
|
onError: a[7] || (a[7] = (_) => e.$emit("loaded"))
|
|
6609
|
-
}, null, 40,
|
|
6597
|
+
}, null, 40, Ri))
|
|
6610
6598
|
], 6),
|
|
6611
6599
|
t("span", {
|
|
6612
6600
|
class: "link-text link-drag color-black",
|
|
@@ -6614,17 +6602,17 @@ function Ri(e, a, n, o, i, r) {
|
|
|
6614
6602
|
}, p(r.linkText), 5)
|
|
6615
6603
|
], 6);
|
|
6616
6604
|
}
|
|
6617
|
-
const
|
|
6605
|
+
const Vi = /* @__PURE__ */ T(Ei, [["render", Ni]]), Oi = {
|
|
6618
6606
|
ANDROID_VERSION: "5.6",
|
|
6619
6607
|
IOS_VERSION: "5.6",
|
|
6620
6608
|
WEB_VERSION: "5.6.0",
|
|
6621
6609
|
SUPPORTED_LANGUAGES: ["en", "de", "es", "kr", "it", "fr"],
|
|
6622
6610
|
METAPIXEL_ID: "1203678696914368",
|
|
6623
6611
|
GOOGLE_ANALYTICS_ID: ""
|
|
6624
|
-
},
|
|
6612
|
+
}, Bi = {
|
|
6625
6613
|
name: "Language",
|
|
6626
6614
|
mixins: [z],
|
|
6627
|
-
components: { LinkIcon:
|
|
6615
|
+
components: { LinkIcon: Vi },
|
|
6628
6616
|
data() {
|
|
6629
6617
|
return {
|
|
6630
6618
|
toggle: !1
|
|
@@ -6635,7 +6623,7 @@ const Ni = /* @__PURE__ */ T(Ii, [["render", Ri]]), Vi = {
|
|
|
6635
6623
|
this.toggle = !1;
|
|
6636
6624
|
});
|
|
6637
6625
|
let e = this.isNative ? await F.getLanguageCode() : N.getFirstBrowserLanguage();
|
|
6638
|
-
e &&
|
|
6626
|
+
e && Oi.SUPPORTED_LANGUAGES.includes(e) && this.updateLanguage(e);
|
|
6639
6627
|
},
|
|
6640
6628
|
beforeDestroy() {
|
|
6641
6629
|
d._events.toggleLanguageModal.pop();
|
|
@@ -6654,16 +6642,16 @@ const Ni = /* @__PURE__ */ T(Ii, [["render", Ri]]), Vi = {
|
|
|
6654
6642
|
this.toggle = !this.toggle;
|
|
6655
6643
|
}
|
|
6656
6644
|
}
|
|
6657
|
-
},
|
|
6645
|
+
}, Di = (e) => (O("data-v-e5a7ac07"), e = e(), B(), e), Ui = /* @__PURE__ */ Di(() => /* @__PURE__ */ t("i", { class: "font-17 fa color-black" }, [
|
|
6658
6646
|
/* @__PURE__ */ t("img", {
|
|
6659
6647
|
src: "https://cdn.tapni.co/icons/down-arrow.png",
|
|
6660
6648
|
class: "fa responsive-image",
|
|
6661
6649
|
style: { width: "45%" }
|
|
6662
6650
|
})
|
|
6663
|
-
], -1)),
|
|
6664
|
-
|
|
6665
|
-
],
|
|
6666
|
-
function
|
|
6651
|
+
], -1)), Ki = [
|
|
6652
|
+
Ui
|
|
6653
|
+
], Hi = { class: "bold center-text color-black small-bottom" };
|
|
6654
|
+
function Fi(e, a, n, o, i, r) {
|
|
6667
6655
|
const u = V("LinkIcon");
|
|
6668
6656
|
return c(), l("div", {
|
|
6669
6657
|
class: b(["menu-wrapper menu-light menu-white menu-modal center-text activate-page", { "active-menu": i.toggle }]),
|
|
@@ -6673,8 +6661,8 @@ function Hi(e, a, n, o, i, r) {
|
|
|
6673
6661
|
onClick: a[0] || (a[0] = (...s) => r.close && r.close(...s)),
|
|
6674
6662
|
class: "color-black pull-right pointer",
|
|
6675
6663
|
style: { "margin-top": "5px", position: "absolute", right: "5px" }
|
|
6676
|
-
},
|
|
6677
|
-
t("h3",
|
|
6664
|
+
}, Ki),
|
|
6665
|
+
t("h3", Hi, p(e.ssoLang[e.appLang].app_language), 1),
|
|
6678
6666
|
v(u, {
|
|
6679
6667
|
onClick: a[1] || (a[1] = (s) => r.updateLanguage("en")),
|
|
6680
6668
|
"link-style": "link-grid",
|
|
@@ -6733,38 +6721,38 @@ function Hi(e, a, n, o, i, r) {
|
|
|
6733
6721
|
}, null, 8, ["data"])
|
|
6734
6722
|
], 2);
|
|
6735
6723
|
}
|
|
6736
|
-
const Se = /* @__PURE__ */ T(
|
|
6737
|
-
var
|
|
6738
|
-
const
|
|
6724
|
+
const Se = /* @__PURE__ */ T(Bi, [["render", Fi], ["__scopeId", "data-v-e5a7ac07"]]);
|
|
6725
|
+
var Qi = { 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 };
|
|
6726
|
+
const $i = { id: "ssoapp" }, Gi = {
|
|
6739
6727
|
key: 0,
|
|
6740
6728
|
href: "/",
|
|
6741
6729
|
class: "header-logo"
|
|
6742
|
-
},
|
|
6730
|
+
}, Wi = /* @__PURE__ */ t("img", {
|
|
6743
6731
|
src: "data:image/png;base64,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",
|
|
6744
6732
|
onerror: "this.onerror=null;this.src='https://cdn.tapni.co/images/logo-dark.png';",
|
|
6745
6733
|
class: "header-logo-img"
|
|
6746
|
-
}, null, -1),
|
|
6747
|
-
|
|
6748
|
-
],
|
|
6734
|
+
}, null, -1), Xi = [
|
|
6735
|
+
Wi
|
|
6736
|
+
], Yi = { class: "lang-icon" }, Zi = {
|
|
6749
6737
|
class: "snackbar snackbar-boxed",
|
|
6750
6738
|
id: "snackbar"
|
|
6751
|
-
},
|
|
6739
|
+
}, Ji = {
|
|
6752
6740
|
class: "snack-body",
|
|
6753
6741
|
id: "errorSnack"
|
|
6754
|
-
},
|
|
6742
|
+
}, eo = { id: "errorMessage" }, ao = /* @__PURE__ */ t("img", {
|
|
6755
6743
|
src: "https://cdn.tapni.co/icons/notification-close.png",
|
|
6756
6744
|
style: { width: "100%" }
|
|
6757
|
-
}, null, -1),
|
|
6758
|
-
|
|
6759
|
-
],
|
|
6745
|
+
}, null, -1), no = [
|
|
6746
|
+
ao
|
|
6747
|
+
], to = {
|
|
6760
6748
|
class: "snack-body",
|
|
6761
6749
|
id: "successSnack"
|
|
6762
|
-
},
|
|
6750
|
+
}, io = { id: "successMessage" }, oo = /* @__PURE__ */ t("img", {
|
|
6763
6751
|
src: "https://cdn.tapni.co/icons/notification-close.png",
|
|
6764
6752
|
style: { width: "100%" }
|
|
6765
|
-
}, null, -1),
|
|
6766
|
-
|
|
6767
|
-
],
|
|
6753
|
+
}, null, -1), ro = [
|
|
6754
|
+
oo
|
|
6755
|
+
], so = {
|
|
6768
6756
|
name: "TapniAuth",
|
|
6769
6757
|
mixins: [z],
|
|
6770
6758
|
data() {
|
|
@@ -6824,20 +6812,20 @@ const Qi = { id: "ssoapp" }, $i = {
|
|
|
6824
6812
|
this.applyBgStyle();
|
|
6825
6813
|
}
|
|
6826
6814
|
}
|
|
6827
|
-
},
|
|
6815
|
+
}, ne = /* @__PURE__ */ Object.assign(so, {
|
|
6828
6816
|
setup(e) {
|
|
6829
6817
|
return document.addEventListener("DOMContentLoaded", function() {
|
|
6830
6818
|
const a = document.createElement("script");
|
|
6831
|
-
a.src = `https://www.google.com/recaptcha/api.js?render=${
|
|
6832
|
-
}), (a, n) => (c(), l("div",
|
|
6833
|
-
a.display === "redirect" ? (c(), l("a",
|
|
6819
|
+
a.src = `https://www.google.com/recaptcha/api.js?render=${Qi.VITE_GOOGLE_RECAPTCHA_SITE_KEY}`, document.head.appendChild(a);
|
|
6820
|
+
}), (a, n) => (c(), l("div", $i, [
|
|
6821
|
+
a.display === "redirect" ? (c(), l("a", Gi, Xi)) : h("", !0),
|
|
6834
6822
|
a.display === "redirect" ? (c(), l("a", {
|
|
6835
6823
|
key: 1,
|
|
6836
6824
|
onClick: n[0] || (n[0] = (...o) => a.toggleLanguageModal && a.toggleLanguageModal(...o)),
|
|
6837
6825
|
class: "font-18 no-border pointer color-black",
|
|
6838
6826
|
style: { position: "absolute", right: "20px", top: "-10px" }
|
|
6839
6827
|
}, [
|
|
6840
|
-
t("span",
|
|
6828
|
+
t("span", Yi, p(a.appLang.toUpperCase()), 1)
|
|
6841
6829
|
])) : h("", !0),
|
|
6842
6830
|
v(we),
|
|
6843
6831
|
v(Se),
|
|
@@ -6853,25 +6841,30 @@ const Qi = { id: "ssoapp" }, $i = {
|
|
|
6853
6841
|
key: 5,
|
|
6854
6842
|
isModal: e.isModal
|
|
6855
6843
|
}, 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 })),
|
|
6856
|
-
t("div",
|
|
6857
|
-
t("p",
|
|
6858
|
-
t("span",
|
|
6844
|
+
t("div", Zi, [
|
|
6845
|
+
t("p", Ji, [
|
|
6846
|
+
t("span", eo, p(a.ssoLang[a.appLang].error), 1),
|
|
6859
6847
|
t("a", {
|
|
6860
6848
|
onClick: n[1] || (n[1] = (...o) => a.closeSnacks && a.closeSnacks(...o)),
|
|
6861
6849
|
style: { position: "absolute", right: "10px", top: "10px", width: "50px", height: "50px" }
|
|
6862
|
-
},
|
|
6850
|
+
}, no)
|
|
6863
6851
|
]),
|
|
6864
|
-
t("p",
|
|
6865
|
-
t("span",
|
|
6852
|
+
t("p", to, [
|
|
6853
|
+
t("span", io, p(a.ssoLang[a.appLang].success), 1),
|
|
6866
6854
|
t("a", {
|
|
6867
6855
|
onClick: n[2] || (n[2] = (...o) => a.closeSnacks && a.closeSnacks(...o)),
|
|
6868
6856
|
style: { position: "absolute", right: "10px", top: "10px", width: "50px", height: "50px" }
|
|
6869
|
-
},
|
|
6857
|
+
}, ro)
|
|
6870
6858
|
])
|
|
6871
6859
|
])
|
|
6872
6860
|
]));
|
|
6873
6861
|
}
|
|
6874
|
-
})
|
|
6862
|
+
}), Lo = {
|
|
6863
|
+
TapniAuth: ne,
|
|
6864
|
+
install: (e, a) => {
|
|
6865
|
+
e.component("TapniAuth", ne), e.config.globalProperties.$storage === void 0 && e.use(Re, a);
|
|
6866
|
+
}
|
|
6867
|
+
};
|
|
6875
6868
|
export {
|
|
6876
|
-
|
|
6869
|
+
Lo as default
|
|
6877
6870
|
};
|