@tapni/auth 1.0.58 → 1.0.59

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/style.css ADDED
@@ -0,0 +1 @@
1
+ .app-store-icon[data-v-cb61958b]{box-shadow:0 4px 10px #00000017;border-radius:12px}#codeInput[data-v-6ab8e3d4],#emailInput[data-v-6ab8e3d4]{text-align:center;padding-right:15%;font-size:17px}.firstRow img[data-v-64ae2517]{width:25px;height:25px;position:absolute;top:50%;right:0;transform:translate(-50%,-50%)}#emailInput[data-v-707a4b16]{text-align:center;padding-right:15%;font-size:17px}html *{font-family:Inter,sans-serif}#bodyId{padding-top:3%;max-width:667px!important;margin:1.5% auto auto;height:95%!important;border-radius:20px}.action-block-top .default-text,.action-block-top .default-text:after{border-radius:50%;width:10em!important;height:10em!important}.action-block-top .default-text{margin:10px auto;font-size:3px;position:relative;text-indent:-9999em;border-left:.5em solid #000000;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:load8 1.1s infinite linear;animation:load8 1.1s infinite linear}@-webkit-keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.smartbanner-ios{background:linear-gradient(to bottom,#f4f4f4,#f4f4f4);box-shadow:0 0 #fff;border-bottom:1px solid #dddddd}.smartbanner-icon{border-radius:16px}.smartbanner-ios .smartbanner-button{font-size:13px;padding:9px 0;height:40px;border-radius:13px;background:#f4f4f4;color:#0a99d2;border:none;box-shadow:none;text-transform:uppercase}.snack-body{display:none;border-radius:40px;font-size:15px!important}#errorSnack{background-color:#fee3e3!important;border:2px solid #edd9d9!important;color:#000}#successSnack{background-color:#eff5eb!important;border:2px solid #e3ecd7!important;color:#000}.grecaptcha-badge{visibility:hidden}.header-logo{position:absolute;left:50%;transform:translate(-50%,-50%);margin-top:0;z-index:2}.header-logo-img{height:40px;margin-top:10px}@media (max-width: 768px){#bodyId{margin-top:0;border-radius:0;height:100%!important}.header-logo{margin-top:15px}}.withBackground[data-v-2f7f5584],.withBackground[data-v-4d3e1bec],.withBackground[data-v-36b27d1f]{height:50px}
@@ -0,0 +1,54 @@
1
+ import { WebPlugin as p } from "@capacitor/core";
2
+ class f extends p {
3
+ constructor() {
4
+ super(...arguments), this.group = "CapacitorStorage";
5
+ }
6
+ async configure({ group: e }) {
7
+ typeof e == "string" && (this.group = e);
8
+ }
9
+ async get(e) {
10
+ return { value: this.impl.getItem(this.applyPrefix(e.key)) };
11
+ }
12
+ async set(e) {
13
+ this.impl.setItem(this.applyPrefix(e.key), e.value);
14
+ }
15
+ async remove(e) {
16
+ this.impl.removeItem(this.applyPrefix(e.key));
17
+ }
18
+ async keys() {
19
+ return { keys: this.rawKeys().map((t) => t.substring(this.prefix.length)) };
20
+ }
21
+ async clear() {
22
+ for (const e of this.rawKeys())
23
+ this.impl.removeItem(e);
24
+ }
25
+ async migrate() {
26
+ var e;
27
+ const t = [], s = [], n = "_cap_", o = Object.keys(this.impl).filter((i) => i.indexOf(n) === 0);
28
+ for (const i of o) {
29
+ const r = i.substring(n.length), a = (e = this.impl.getItem(i)) !== null && e !== void 0 ? e : "", { value: l } = await this.get({ key: r });
30
+ typeof l == "string" ? s.push(r) : (await this.set({ key: r, value: a }), t.push(r));
31
+ }
32
+ return { migrated: t, existing: s };
33
+ }
34
+ async removeOld() {
35
+ const e = "_cap_", t = Object.keys(this.impl).filter((s) => s.indexOf(e) === 0);
36
+ for (const s of t)
37
+ this.impl.removeItem(s);
38
+ }
39
+ get impl() {
40
+ return window.localStorage;
41
+ }
42
+ get prefix() {
43
+ return this.group === "NativeStorage" ? "" : `${this.group}.`;
44
+ }
45
+ rawKeys() {
46
+ return Object.keys(this.impl).filter((e) => e.indexOf(this.prefix) === 0);
47
+ }
48
+ applyPrefix(e) {
49
+ return this.prefix + e;
50
+ }
51
+ }
52
+ export {
53
+ f as PreferencesWeb
54
+ };
@@ -0,0 +1,86 @@
1
+ import { WebPlugin as c } from "@capacitor/core";
2
+ class g extends c {
3
+ constructor() {
4
+ super();
5
+ }
6
+ loadScript() {
7
+ if (typeof document > "u")
8
+ return;
9
+ const e = "gapi";
10
+ if (document == null ? void 0 : document.getElementById(e))
11
+ return;
12
+ const n = document.getElementsByTagName("head")[0], t = document.createElement("script");
13
+ t.type = "text/javascript", t.defer = !0, t.async = !0, t.id = e, t.onload = this.platformJsLoaded.bind(this), t.src = "https://apis.google.com/js/platform.js", n.appendChild(t);
14
+ }
15
+ initialize(e = {
16
+ clientId: "",
17
+ scopes: [],
18
+ grantOfflineAccess: !1
19
+ }) {
20
+ var s, n;
21
+ if (typeof window > "u")
22
+ return;
23
+ const t = (s = document.getElementsByName("google-signin-client_id")[0]) === null || s === void 0 ? void 0 : s.content, i = e.clientId || t || "";
24
+ return i || console.warn("GoogleAuthPlugin - clientId is empty"), this.options = {
25
+ clientId: i,
26
+ grantOfflineAccess: (n = e.grantOfflineAccess) !== null && n !== void 0 ? n : !1,
27
+ scopes: e.scopes || []
28
+ }, this.gapiLoaded = new Promise((o) => {
29
+ window.gapiResolve = o, this.loadScript();
30
+ }), this.addUserChangeListener(), this.gapiLoaded;
31
+ }
32
+ platformJsLoaded() {
33
+ gapi.load("auth2", () => {
34
+ const e = {
35
+ client_id: this.options.clientId,
36
+ plugin_name: "CodetrixStudioCapacitorGoogleAuth"
37
+ };
38
+ this.options.scopes.length && (e.scope = this.options.scopes.join(" ")), gapi.auth2.init(e), window.gapiResolve();
39
+ });
40
+ }
41
+ async signIn() {
42
+ return new Promise(async (e, s) => {
43
+ var n;
44
+ try {
45
+ let t;
46
+ const i = (n = this.options.grantOfflineAccess) !== null && n !== void 0 ? n : !1;
47
+ i ? t = (await gapi.auth2.getAuthInstance().grantOfflineAccess()).code : await gapi.auth2.getAuthInstance().signIn();
48
+ const o = gapi.auth2.getAuthInstance().currentUser.get();
49
+ i && await o.reloadAuthResponse();
50
+ const a = this.getUserFrom(o);
51
+ a.serverAuthCode = t, e(a);
52
+ } catch (t) {
53
+ s(t);
54
+ }
55
+ });
56
+ }
57
+ async refresh() {
58
+ const e = await gapi.auth2.getAuthInstance().currentUser.get().reloadAuthResponse();
59
+ return {
60
+ accessToken: e.access_token,
61
+ idToken: e.id_token,
62
+ refreshToken: ""
63
+ };
64
+ }
65
+ async signOut() {
66
+ return gapi.auth2.getAuthInstance().signOut();
67
+ }
68
+ async addUserChangeListener() {
69
+ await this.gapiLoaded, gapi.auth2.getAuthInstance().currentUser.listen((e) => {
70
+ this.notifyListeners("userChange", e.isSignedIn() ? this.getUserFrom(e) : null);
71
+ });
72
+ }
73
+ getUserFrom(e) {
74
+ const s = {}, n = e.getBasicProfile();
75
+ s.email = n.getEmail(), s.familyName = n.getFamilyName(), s.givenName = n.getGivenName(), s.id = n.getId(), s.imageUrl = n.getImageUrl(), s.name = n.getName();
76
+ const t = e.getAuthResponse(!0);
77
+ return s.authentication = {
78
+ accessToken: t.access_token,
79
+ idToken: t.id_token,
80
+ refreshToken: ""
81
+ }, s;
82
+ }
83
+ }
84
+ export {
85
+ g as GoogleAuthWeb
86
+ };
@@ -0,0 +1,121 @@
1
+ import { WebPlugin as j } from "@capacitor/core";
2
+ var w = { exports: {} };
3
+ /*!
4
+ * $script.js JS loader & dependency manager
5
+ * https://github.com/ded/script.js
6
+ * (c) Dustin Diaz 2014 | License MIT
7
+ */
8
+ (function(y) {
9
+ (function(i, p) {
10
+ y.exports ? y.exports = p() : this[i] = p();
11
+ })("$script", function() {
12
+ var i = document, p = i.getElementsByTagName("head")[0], I = !1, m = "push", S = "readyState", A = "onreadystatechange", s = {}, o = {}, d = {}, f, v;
13
+ function g(e, t) {
14
+ for (var n = 0, u = e.length; n < u; ++n) if (!t(e[n])) return I;
15
+ return 1;
16
+ }
17
+ function h(e, t) {
18
+ g(e, function(n) {
19
+ return t(n), 1;
20
+ });
21
+ }
22
+ function l(e, t, n) {
23
+ e = e[m] ? e : [e];
24
+ var u = t && t.call, r = u ? t : n, N = u ? e.join("") : t, U = e.length;
25
+ function b(c) {
26
+ return c.call ? c() : s[c];
27
+ }
28
+ function _() {
29
+ if (!--U) {
30
+ s[N] = 1, r && r();
31
+ for (var c in o)
32
+ g(c.split("|"), b) && !h(o[c], b) && (o[c] = []);
33
+ }
34
+ }
35
+ return setTimeout(function() {
36
+ h(e, function c(a, W) {
37
+ if (a === null) return _();
38
+ if (!W && !/^https?:\/\//.test(a) && f && (a = a.indexOf(".js") === -1 ? f + a + ".js" : f + a), d[a])
39
+ return d[a] == 2 ? _() : setTimeout(function() {
40
+ c(a, !0);
41
+ }, 0);
42
+ d[a] = 1, x(a, _);
43
+ });
44
+ }, 0), l;
45
+ }
46
+ function x(e, t) {
47
+ var n = i.createElement("script"), u;
48
+ n.onload = n.onerror = n[A] = function() {
49
+ n[S] && !/^c|loade/.test(n[S]) || u || (n.onload = n[A] = null, u = 1, d[e] = 2, t());
50
+ }, n.async = 1, n.src = v ? e + (e.indexOf("?") === -1 ? "?" : "&") + v : e, p.insertBefore(n, p.lastChild);
51
+ }
52
+ return l.get = x, l.order = function(e, t, n) {
53
+ (function u(r) {
54
+ r = e.shift(), e.length ? l(r, u) : l(r, t, n);
55
+ })();
56
+ }, l.path = function(e) {
57
+ f = e;
58
+ }, l.urlArgs = function(e) {
59
+ v = e;
60
+ }, l.ready = function(e, t, n) {
61
+ e = e[m] ? e : [e];
62
+ var u = [];
63
+ return !h(e, function(r) {
64
+ s[r] || u[m](r);
65
+ }) && g(e, function(r) {
66
+ return s[r];
67
+ }) ? t() : function(r) {
68
+ o[r] = o[r] || [], o[r][m](t), n && n(u);
69
+ }(e.join("|")), l;
70
+ }, l.done = function(e) {
71
+ l([null], e);
72
+ }, l;
73
+ });
74
+ })(w);
75
+ var z = w.exports;
76
+ class P extends j {
77
+ constructor() {
78
+ super({
79
+ name: "SignInWithApple",
80
+ platforms: ["web"]
81
+ }), this.appleScriptUrl = "https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js", this.isAppleScriptLoaded = !1;
82
+ }
83
+ async authorize(i) {
84
+ return new Promise((p, I) => {
85
+ i ? this.loadSignInWithAppleJS().then((m) => {
86
+ var S, A, s;
87
+ this.isAppleScriptLoaded = m, this.isAppleScriptLoaded ? (AppleID.auth.init({
88
+ clientId: i.clientId,
89
+ redirectURI: i.redirectURI,
90
+ scope: (S = i.scopes) !== null && S !== void 0 ? S : void 0,
91
+ state: (A = i.state) !== null && A !== void 0 ? A : void 0,
92
+ nonce: (s = i.nonce) !== null && s !== void 0 ? s : void 0,
93
+ usePopup: !0
94
+ }), AppleID.auth.signIn().then((o) => {
95
+ var d, f, v, g, h;
96
+ const l = {
97
+ response: {
98
+ user: null,
99
+ email: (d = o.user) === null || d === void 0 ? void 0 : d.email,
100
+ givenName: (v = (f = o.user) === null || f === void 0 ? void 0 : f.name) === null || v === void 0 ? void 0 : v.firstName,
101
+ familyName: (h = (g = o.user) === null || g === void 0 ? void 0 : g.name) === null || h === void 0 ? void 0 : h.lastName,
102
+ identityToken: o.authorization.id_token,
103
+ authorizationCode: o.authorization.code
104
+ }
105
+ };
106
+ p(l);
107
+ }).catch((o) => {
108
+ I(o);
109
+ })) : I("Unable to load Sign in with Apple JS framework.");
110
+ }) : I("No options were provided.");
111
+ });
112
+ }
113
+ loadSignInWithAppleJS() {
114
+ return new Promise((i) => {
115
+ this.isAppleScriptLoaded ? i(!0) : typeof window !== void 0 ? z.get(this.appleScriptUrl, () => i(!0)) : i(!1);
116
+ });
117
+ }
118
+ }
119
+ export {
120
+ P as SignInWithAppleWeb
121
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapni/auth",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "type": "module",
5
5
  "main": "./dist/TapniAuth.umd.js",
6
6
  "module": "./dist/TapniAuth.es.js",
@@ -1 +0,0 @@
1
- .withBackground[data-v-2f7f5584]{height:50px}
@@ -1 +0,0 @@
1
- import{e as l,_ as g,A as u,E as _,c as n,a as s,f as r,g as h,w as f,t as i,F as m,h as b,r as y,o}from"./index-D2cf3M6H.js";const w={async getRecordById(t){return l().post("/objects/record/"+t.id,t)},async getRecords(t){return l().post("/objects/records",t)}},k={name:"AuthApps",mixins:[u],props:{payload:{type:Object,default:{}}},data(){return{loading:!1,apps:[]}},async mounted(){this.isLoggedIn||this.$router.push("/login");const t=await w.getRecords({objectId:"6dc545ea-2e2f-4720-b4fe-c5ebdd8af063",query:{fields:["t_apps_name","t_apps_icon","t_apps_url"],relations:[]}});this.apps=t.data.records},methods:{close(){_.$emit("ssoEvent",{name:"toggleAuthModal",data:!0})}}},v={class:"page-login content-boxed content-boxed-padding"},x={class:"subheaderContainer full-top"},B=["src"],I={class:"center-text",style:{"flex-grow":"1","text-align":"center",margin:"0","font-weight":"600"}},A={class:"container left-text"},L={class:"center-text"},C={class:"full-top"},M=["href"],R={class:"firstRow"},j=["src"],E=["src"];function $(t,a,F,N,d,c){const p=y("router-link");return o(),n("div",v,[t.isModal?(o(),n("a",{key:0,onClick:a[0]||(a[0]=(...e)=>c.close&&c.close(...e)),class:"color-black pull-right pointer",style:{"margin-top":"0px",position:"absolute",right:"-20px","text-align":"right"}},a[1]||(a[1]=[s("i",{class:"font-17 color-black"},[s("img",{src:"https://cdn.tapni.co/icons/down-arrow.png",class:"responsive-image",style:{width:"35%"}})],-1)]))):r("",!0),s("div",x,[t.isModal?r("",!0):(o(),h(p,{key:0,to:"/account",class:"button gray-button pointer left-button"},{default:f(()=>[s("img",{src:t.getIcon("arrow-gray-right.svg"),height:"20",width:"20",class:"btn-icon",style:{rotate:"180deg"}},null,8,B)]),_:1})),s("h2",I,i(t.ssoLang[t.appLanguage].apps),1)]),s("div",A,[s("p",L,i(t.ssoLang[t.appLanguage].apps_p),1),s("div",C,[r("",!0),(o(!0),n(m,null,b(d.apps,e=>(o(),n("a",{key:e.id,href:e.t_apps_url,target:"_blank",class:"settingRow half-bottom"},[s("div",R,[s("img",{src:t.getIcon(e.t_apps_icon),class:"withBackground"},null,8,j),s("h4",null,i(e.t_apps_name),1),s("img",{src:t.getIcon("arrow-gray-right.svg")},null,8,E)])],8,M))),128))])])])}const V=g(k,[["render",$],["__scopeId","data-v-2f7f5584"]]);export{V as default};
@@ -1 +0,0 @@
1
- import{_ as p,A as u,i as g,E as _,c as i,a as s,f as r,g as h,w as b,t as a,d as m,F as f,h as y,r as v,o as e}from"./index-D2cf3M6H.js";const w={name:"AuthBilling",mixins:[u],props:{payload:{type:Object,default:{}}},data(){return{loading:!1,subscriptions:[]}},async mounted(){this.isLoggedIn||this.$router.push("/login");const t=await g.getRecords({objectId:"6dc545ea-2e2f-4720-b4fe-c5ebdd8af066",query:{where:{account:this.account.id},fields:["t_subscriptions_name","t_subscriptions_desc","t_subscriptions_type","t_subscriptions_active","t_subscriptions_app"],relations:{t_subscriptions_app:{fields:["t_apps_name","t_apps_icon","t_apps_url"],relations:{}}}}});this.subscriptions=t.data.records},methods:{close(){_.$emit("ssoEvent",{name:"toggleAuthModal",data:!0})}}},k={class:"page-login content-boxed content-boxed-padding"},B={class:"subheaderContainer full-top"},x=["src"],I={class:"center-text",style:{"flex-grow":"1","text-align":"center",margin:"0","font-weight":"600"}},L={class:"container left-text"},A={class:"center-text"},C={class:"full-top"},E={class:"firstRow"},M=["src"],N=["src"];function R(t,o,V,$,l,c){const d=v("router-link");return e(),i("div",k,[t.isModal?(e(),i("a",{key:0,onClick:o[0]||(o[0]=(...n)=>c.close&&c.close(...n)),class:"color-black pull-right pointer",style:{"margin-top":"0px",position:"absolute",right:"-20px","text-align":"right"}},o[1]||(o[1]=[s("i",{class:"font-17 color-black"},[s("img",{src:"https://cdn.tapni.co/icons/down-arrow.png",class:"responsive-image",style:{width:"35%"}})],-1)]))):r("",!0),s("div",B,[t.isModal?r("",!0):(e(),h(d,{key:0,to:"/account",class:"button gray-button pointer left-button"},{default:b(()=>[s("img",{src:t.getIcon("arrow-gray-right.svg"),height:"20",width:"20",class:"btn-icon",style:{rotate:"180deg"}},null,8,x)]),_:1})),s("h2",I,a(t.ssoLang[t.appLanguage].billing),1)]),s("div",L,[s("p",A,a(t.ssoLang[t.appLanguage].billing_p),1),s("div",C,[r("",!0),m(" "+a(t.account.billing)+" ",1),(e(!0),i(f,null,y(l.subscriptions,n=>(e(),i("div",{key:n.id,class:"settingRow half-bottom"},[s("div",E,[s("img",{src:t.getIcon(t.app.t_apps_icon),class:"withBackground"},null,8,M),s("h4",null,a(n.t_subscriptions_name),1),s("img",{src:t.getIcon("arrow-gray-right.svg")},null,8,N)])]))),128))])])])}const F=p(w,[["render",R],["__scopeId","data-v-4d3e1bec"]]);export{F as default};
@@ -1 +0,0 @@
1
- .withBackground[data-v-4d3e1bec]{height:50px}
@@ -1 +0,0 @@
1
- import{_ as d,A as u,i as g,E as _,c as n,a as t,f as i,g as h,w as m,t as r,r as f,o}from"./index-D2cf3M6H.js";const y={name:"AuthCustomApp",mixins:[u],props:{payload:{type:Object,default:{}}},data(){return{loading:!1,app:{}}},async mounted(){this.isLoggedIn||this.$router.push("/login");const e=await g.getRecordById({id:this.$route.params.app,query:{fields:["t_apps_name","t_apps_icon","t_apps_url"],relations:[]}});this.app=e.data.record},methods:{close(){_.$emit("ssoEvent",{name:"toggleAuthModal",data:!0})}}},b={class:"page-login content-boxed content-boxed-padding"},v={class:"subheaderContainer full-top"},x=["src"],k={class:"center-text",style:{"flex-grow":"1","text-align":"center",margin:"0","font-weight":"600"}},w={class:"container left-text"},A={class:"center-text"};function C(e,s,B,E,l,a){const p=f("router-link");return o(),n("div",b,[e.isModal?(o(),n("a",{key:0,onClick:s[0]||(s[0]=(...c)=>a.close&&a.close(...c)),class:"color-black pull-right pointer",style:{"margin-top":"0px",position:"absolute",right:"-20px","text-align":"right"}},s[1]||(s[1]=[t("i",{class:"font-17 color-black"},[t("img",{src:"https://cdn.tapni.co/icons/down-arrow.png",class:"responsive-image",style:{width:"35%"}})],-1)]))):i("",!0),t("div",v,[e.isModal?i("",!0):(o(),h(p,{key:0,to:"/apps",class:"button gray-button pointer left-button"},{default:m(()=>[t("img",{src:e.getIcon("arrow-gray-right.svg"),height:"20",width:"20",class:"btn-icon",style:{rotate:"180deg"}},null,8,x)]),_:1})),t("h2",k,r(l.app.t_apps_name),1)]),t("div",w,[t("p",A,r(e.ssoLang[e.appLanguage].apps_p),1),s[2]||(s[2]=t("div",{class:"full-top"},null,-1))])])}const M=d(y,[["render",C],["__scopeId","data-v-36b27d1f"]]);export{M as default};
@@ -1 +0,0 @@
1
- .withBackground[data-v-36b27d1f]{height:50px}
Binary file
@@ -1 +0,0 @@
1
- import{_ as a,A as l,Q as i,c as r,a as o,t,b as u,w as p,r as d,o as g,d as _}from"./index-D2cf3M6H.js";const m={name:"AuthQR",mixins:[l,i]},L={class:"page-login content-boxed content-boxed-padding"},b={style:{"text-align":"center",width:"80%",margin:"0 auto","margin-top":"130px"}},h={class:"center-text"},f={style:{margin:"0 auto",width:"85%","text-align":"left"}},y={class:"center-text"};function v(e,n,w,k,C,q){const s=d("router-link");return g(),r("div",L,[o("h5",b,t(e.ssoLang[e.appLanguage].use_tapni_on_the_web),1),n[6]||(n[6]=o("br",null,null,-1)),o("div",h,[n[3]||(n[3]=o("div",{id:"qrCodeContainer",class:"qrCodeRounded",style:{"max-width":"100%"}},null,-1)),n[4]||(n[4]=o("br",null,null,-1)),n[5]||(n[5]=o("br",null,null,-1)),o("div",f,[o("h2",y,t(e.ssoLang[e.appLanguage].login_by_scanning_qr_code),1),n[0]||(n[0]=o("br",null,null,-1)),o("h4",null,t(e.ssoLang[e.appLanguage].open_tapni_app_on_your_phone),1),o("h4",null,t(e.ssoLang[e.appLanguage].go_to_settings_link_a_device),1),o("h4",null,t(e.ssoLang[e.appLanguage].point_your_phone_at_this_qr_code),1),n[1]||(n[1]=o("br",null,null,-1)),n[2]||(n[2]=o("br",null,null,-1))]),u(s,{to:"/login"},{default:p(()=>[_(t(e.ssoLang[e.appLanguage].choose_other_login_methods),1)]),_:1})])])}const A=a(m,[["render",v]]);export{A as default};