KL.Modules.loginset = new function () {
var self = this;
this.emailformat = '^[\\w\\d\\._-]+@([\\w\\d_-]*[\\w\\d]\\.)+([\\w]{2,})$';
this.nombreformat = '^[\\wÁÉÍÓÚÝáéíóúýäëïöüÿÄËÏÖÜàèìòùÀÈÌÒÙñÑ\\d-\\. ]*$';
this.currentnode = null;
// Switchear entre divs de login para mostrar contenidos
this.show = show;
function show(id, nopush) {
if (!KL.Modules.loginset.forms[id]) {
console.log("loginset.show(" + id + ") does not exists");
return;
}
if (self.currentnode)
KL.Modules.loginset.forms[self.currentnode].hide();
KL.Modules.loginset.forms[id].show();
if (!nopush)
setTimeout(function() { window.history.pushState('', 'Kiwilimon ' + id, '/login/' + id + document.location.search); }, 0);
self.currentnode = id;
//KL.Modules.stat.registerEvent('loginset', 'loginset/' + id + '/show');
KL.Modules.stat.registerEventGA4('loginset/' + id + '/show', {'send_to': KL.analyticsTag});
}
function hideall() {
for (i in KL.Modules.loginset.forms) {
KL.Modules.loginset.forms[i].hide();
}
}
this.errorlogin = errorlogin;
function errorlogin(id, msg) {
// WA.toDOM(id).className = 'error-campo';
WA.toDOM(id + '-msg').innerHTML = msg;
WA.toDOM(id + '-msg').style.display = '';
}
this.limpiacampo = limpiacampo;
function limpiacampo(id) {
// WA.toDOM(id).className = '';
WA.toDOM(id + '-msg').innerHTML = '';
WA.toDOM(id + '-msg').style.display = 'none';
}
this.Logged = Logged;
function Logged() {
// wait for identified client
if (!KL.Modules.client.clientlogged)
{
setTimeout(function() { Logged(); }, 300);
return;
}
// then change to the page
// Hay un p= ?
p = new URLSearchParams(document.location.search).get('p');
if (p) {
setTimeout( function() { document.location.href = p; /*KL.loader.loadPage(p);*/ } , 0);
return;
}
if(!KL.loader.clickToolInPage){
switch (KL.language) {
case 'en':
document.location.href = '/my-account/profile';
break;
default:
document.location.href = '/mi-cuenta/perfil';
}
} else {
KL.loader.loadPage(KL.loader.clickToolInPage)
}
}
function start() {
// estamos en la pantalla de login ?
if (!WA.toDOM('loginset-social'))
return;
if(WA.toDOM('login-msg-usuario-principal')){
WA.toDOM('login-msg-usuario-principal').style.display = 'block';
WA.toDOM('login-msg-usuario-secundario').style.display = 'none';
var txt1 = '¿Ya tienes cuenta? Solo inicia sesión para empezar a guardar tod';
var txtTipo = 'r';
var txt2 = '
Si no tienes cuenta, regístrate ahora ¡Es fácil y rápido! Así podrás agregar tod';
var url = new URL(document.location.href)
var mess = url.searchParams.get("o")
//var a = '';
var fromTools = false;
//
switch (true){
case /sube-tu-receta/.test(url.pathname):
case /mis-recetas/.test(url.pathname):
txtTipo = 'as tus recetas preferidas';
fromTools = true;
break;
case /colecciones/.test(url.pathname):
case /col/.test(url.pathname):
txtTipo = 'as tus colecciones preferidas';
fromTools = true;
break;
case /shoppinglist/.test(url.pathname):
case /lista-del-super/.test(url.pathname):
txtTipo = 'as tus listas de súper preferidas';
fromTools = true;
break;
case /planner/.test(url.pathname):
case /planeador-de-menu/.test(url.pathname):
txt1 = '
¡Empieza a organizar tus comidas hoy mismo!
Si ya tienes cuenta, solo inicia sesión y comienza a crear tu planeador de menús'
var txtTipo = '';
var txt2 = '
Si aún no tienes cuenta, ¡no te preocupes! Regístrate ahora en minutos y empieza a agregar tus recetas favoritas. ¡Es fácil y rápido!';
fromTools = true;
break;
case /fav/.test(mess):
case /favoritos/.test(url.pathname):
txtTipo = 'as tus recetas, tips y notas'
if(mess !== null){
mess = mess.split('/');
//a = mess[1];
txtTipo = mess[2];
if(txtTipo=='r')
txtTipo = 'as tus recetas preferidas';
if(txtTipo=='t'){
txtTipo = 'os tus tips preferidos';
}
if(txtTipo=='a')
txtTipo = 'as tus notas preferidas';
}
fromTools = true;
break;
}
if(fromTools){
WA.toDOM('login-msg-usuario-secundario').innerHTML = txt1 + txtTipo + '. ' + txt2 + txtTipo +'.
';
WA.toDOM('login-msg-usuario-secundario').style.display = 'block';
WA.toDOM('login-msg-usuario-principal').style.display = 'none';
}
}
for (i in KL.Modules.loginset.forms) {
KL.Modules.loginset.forms[i].start();
}
hideall();
// verify URL to show adhoc screen
// sintaxis: login?p=path[&o=fav|col|addcol|createcol|shoppinglist|sup]/[r]/[key]
xid = document.location.pathname.split("/").pop();
if (KL.Modules.loginset.forms[xid]) {
show(xid, true);
return;
}
// actualiza sw cache
if(navigator.serviceWorker.controller)
navigator.serviceWorker.controller.postMessage({'networkResponse': document.referrer});
show('social', KL.loader.clickTool ? true : false);
}
function stop()
{
// estamos en la pantalla de login ?
if (!WA.toDOM('loginset-social'))
return;
for (i in KL.Modules.loginset.forms) {
KL.Modules.loginset.forms[i].stop();
}
console.log("STOP");
}
this.showHidePass = showHidePass;
function showHidePass(event)
{
var node = event.srcElement;
if(node.type == 'password')
node.type = 'text';
else
node.type = 'password';
}
// Crea popup para login
this.buildPopup = buildPopup;
function buildPopup(){
KL.loader.clickToolInPage = location.pathname;
var data = {"clientdata":null}
data.siteorigin = KL.rootsite;
template = WA.templates['loginset'];
var social = template(data)
return '
${['cond', 'siteorigin','origenctanativo']}
Sign up here
`;
WA.templates['origenctanativo.crafto'] = WA.templater`
Don't have an account at Craftology?
`;
WA.templates['origenctanativo'] = WA.templater`
Don't have an account at Kiwilimón?
`;
WA.templates['loginset_enlaza'] = WA.templater`
Use a minimum of 6 characters, combine numbers, letters, and symbols. Also use uppercase letters to form a secure password. Do not use an obvious password.
${'message'}
${'message'}
If you have trouble resetting your password, please contact us at the address support@kiwilimon.com to recover your account.
`;
KL.currentcode={"breadcrumbs":{"bc":[{"n":"Home","p":"/"},{"n":"Information","p":"/informacion"},{"n":"Terms of Use","p":"/informacion/politicas-de-uso"}]},"datachefconectado":{"client":null,"device":"mobile","geo":"CA","gep":"US","ip":"216.73.216.45","locallanguage":"en","origin":"kiwi","server":"front","skin":"","t":1749200107},"texto-politicas":"\u003ch1 style=\"color: #333333; font-size: 28px; font-weight: bold; margin: 0px 0px 20px; padding: 0px; \"\u003eWebsite Usage Policies\u003c/h1\u003e\r\n\r\n\"kiwilimón\", S.A.P.I. de C.V. (\"kiwilimón\") is a company formed in accordance with the laws of the United Mexican States (Mexico) with its registered office in Mexico City, Mexico.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nkiwilimón is attentive to your comments. For any questions, inquiries, and/or comments, please contact \u003cspan style=\"color: #8cc63e;\"\u003esoporte@kiwilimon.com\u003c/span\u003e.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nkiwilimón hereby informs its users and the general public of the following usage policies of the kiwilimón website \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nThese usage policies (the \"Policies\") of the website govern the use you give to said site and any of the content available through or on this website.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nkiwilimón encourages the use and communication of data, multimedia publications, and content generated by both the users of this website (the \"Users\"), and any content created by the administration of kiwilimón.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nAny information that Users enter in the available public spaces of the website \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e will be in the public domain, except for everything protected by the Federal Copyright Law or the Federal Industrial Property Protection Law in force in Mexico.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nkiwilimón reserves the right to use, display, modify, share, publish, distribute, involve in future works, and commercially use a recipe, comment, rating, photograph, image, video, list, comments, ideas, notes, concepts, or any other information, content, or material, or any other term that Users perform or upload to the site \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e ; that is, the User assigns and grants to kiwilimón all copyright and intellectual property rights to the information and content shared through the site \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e without consideration of any kind to the User or any third party, except for what is protected by current intellectual and/or industrial property legislation in Mexico.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nkiwilimón reserves the right to prevent and/or remove any publication of photos, written content or videos that go against kiwilimón's principles or that are considered illegal, against public order or morality. Therefore, the user of www.kiwilimón.com undertakes not to enter any content on the website that is considered obscene, vulgar, pornographic, evasive, abusive, racial, apologist or constitutive of a crime, in accordance with Mexican legislation, impersonate the identity of another person on the website, offer services, promotions or advertising without the consent of kiwilimón, among others. Likewise, the user undertakes to use kiwilimón's content in accordance with these website policies, and other notices made known to the public through \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\u003cbr /\u003e\r\n\r\n\r\n\u003ch4 style=\"color: #333333; font-size: 17px; font-weight: bold; line-height: 19px; margin: 0px 0px 20px;\"\u003eINTELLECTUAL PROPERTY\u003c/h4\u003e\r\n\r\nAll trademarks, trade names, design, logos, texts, graphics, or any object subject to industrial or intellectual property are owned by \u003cspan style=\"font-weight: bold;\"\u003eKIWIL\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nAnyone who uses the trademarks, trade names, design, or any other of the aforementioned without the authorization of kiwilimón will be subject to legal action corresponding to kiwilimón's rights, including civil, criminal, or administrative actions. Therefore, Users of this website undertake not to reproduce or use the intellectual property material of this site without proper authorization.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nAny recipe that kiwilimón Users or the kiwilimón Administration share through the website \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e If it is not created by those people, it must be accompanied by the source from which it was taken and/or modified. The above in accordance with the current legislation on copyright and intellectual property in Mexico.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\u003cbr /\u003e\r\n\r\n\r\n\u003ch4 style=\"color: #333333; font-size: 17px; font-weight: bold; line-height: 19px; margin: 0px 0px 20px;\"\u003eRESPONSIBILITY\u003c/h4\u003e\r\n\r\nkiwilimón excludes liability for the following:\r\n\r\n\u003cul style=\"margin-left: 20px;\"\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 10px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003eThe user is solely responsible for the use of this website. They declare that they access this website at their own risk, and that the mere act of browsing on this site implies the tacit and express consent of the user to accept and respect these policies.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003eThe use made of this website by users is committed to being solely for the own needs of those who have access to this website, and not to be directly or indirectly or in any way used by them for the commercial exploitation of the services and/or products that kiwilimón may offer. Users may electronically copy and print portions of the site only for personal and non-commercial use materials. The use that does not have the written consent of \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e is strictly prohibited.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003ekiwilimón does not guarantee that the service provided through the website \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e will be continuous and uninterrupted, as well as free from server failures and/or errors within it.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003ekiwilimón assumes no responsibility for communications made between Users of \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e , nor any other type of content or electronic files shared among them.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003ekiwilimón is not responsible for the content of any other website linked to. \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e; these sites may not be related to or aligned with these Policies, privacy policies, or confidentiality regarding personal information.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003ekiwilimón is not responsible for the data that the user shares or provides with such websites. \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e will be solely responsible for the handling of Information provided on linked or third-party websites, in the event that this responsibility is expressly specified and to the extent determined in the privacy policies displayed on said websites.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003eThe accounts and passwords that Users establish for \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e , are the sole responsibility of the Users, and kiwilimón is not responsible for them in any way.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003ekiwilimón reserves the right to change, modify, or suspend the content of this website (\u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e) at any time and without prior notice. kiwilimón will not be responsible for the implications that this may cause to users. In addition to being able to restrict access to this website in its entirety and delete any content provided by kiwilimón.\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-alpha; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003ekiwilimón is responsible for the financial information entered on this website (that is not created by such individuals), it must be accompanied by the source from which it was taken and/or modified. The foregoing in accordance with the current legislation on copyright and intellectual property in Mexico.\u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e).\u003c/span\u003e\u003c/li\u003e\r\n\u003c/ul\u003e\r\n\r\n\u003cbr /\u003e\r\n\r\n\r\n\r\n\u003ch4 style=\"color: #333333; font-size: 17px; font-weight: bold; line-height: 19px; margin: 10px 0px 20px;\"\u003ePAYPAL\u003c/h4\u003e\r\n\r\nkiwilimón allows Users to subscribe as \"KiwiPro\" for a monthly fee specified on the website \u003ca href=\"/\" target=\"_blank\" style=\"color: #8cc63e; overflow-wrap: break-word;\"\u003ewww.kiwilimon.com\u003c/a\u003e. The processing of subscription payments will be carried out by \"PayPal\" from Operadora PayPal de México S. de R.L. de C.V., so all the data that the user enters to make the subscription payment, such as full name, bank accounts, passwords, security codes, email address, among other data, will be stored by \"PayPal\" and will be governed by the maintenance and information protection policies of said company, which can be found at the following link: \u003cbr /\u003e\r\n\u003ca href=\"https://www.paypal.com/mx/webapps/mpp/ua/legalhub-full?locale.x=es_MX\" target=\"_blank\" rel=\"nofollow\" style=\"color: #8cc63e;\"\u003ehttps://www.paypal.com/mx/webapps/mpp/ua/legalhub-full?locale.x=es_MX\u003c/a\u003e\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nFrom the above, the kiwilimón User acknowledges and accepts that any inconvenience, complaint, and/or suggestion regarding the payment of an item from kiwilimón must be made directly with the payment processor \"PayPal\", releasing kiwilimón from any responsibility for the payments they wish to process.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\u003cbr /\u003e\r\n\r\n\u003ch4 style=\"color: #333333; font-size: 17px; font-weight: bold; line-height: 19px; margin: 10px 0px 20px;\"\u003eOPENPAY\u003c/h4\u003e\r\n\r\nkiwilimón allows users to subscribe as \"KiwiPro\" for a monthly payment specified on the website. \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e . The processing of subscription payments will be carried out by \"Openpay\" of Openpay, S.A. de C.V., so all the data that the user enters to make the subscription payment, such as full name, bank accounts, passwords, security codes, email address, among other data, will be stored by \"Openpay\" and will be governed by the policies of maintenance and protection of information of said company, which can be found at the following link: \u003cbr /\u003e\r\n\u003ca href=\"https://documents.openpay.mx/docs/terminos-servicio.html\" target=\"_blank\" rel=\"nofollow\" style=\"color: #8cc63e;\"\u003ehttps://documents.openpay.mx/docs/terminos-servicio.html\u003c/a\u003e\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nFrom the above, the kiwilimón User acknowledges and accepts that any inconvenience, complaint, and/or suggestion regarding the payment of an item from kiwilimón must be made directly with the payment processor \"Openpay\", releasing kiwilimón from any responsibility for the payments they wish to process.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\u003cbr /\u003e\r\n\r\n\u003ch4 style=\"color: #333333; font-size: 17px; font-weight: bold; line-height: 19px; margin: 0px 0px 20px;\"\u003eANTI-SPAMMING POLICY OF KIWILIMÓN.COM\u003c/h4\u003e\r\n\r\nThe User shall refrain from: \r\n\r\n\u003cul style=\"margin-left: 20px;\"\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-roman; padding: 10px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003ecollect data for advertising purposes and to send advertising of any kind and communications for sales or other commercial purposes without prior request and consent;\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-roman; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003esend any other unsolicited or previously unconsented messages to a plurality of people;\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-roman; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003esend unsolicited or previously unconsented chains of electronic messages;\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-roman; padding: 0px 0px 5px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003euse distribution lists that can be accessed to carry out the activities indicated in sections (i) to (iii) above;\u003c/span\u003e\u003c/li\u003e\r\n \u003cli style=\"font-size: 17px; font-weight: 600; line-height: 26px; list-style: inside none lower-roman; padding: 0px 0px 10px;\"\u003e\u003cspan style=\"font-weight: normal;\"\u003emake available to third parties, for any purpose, data collected from distribution lists.\u003c/span\u003e\u003c/li\u003e\r\n\u003c/ul\u003e\r\n\r\n\u003cbr /\u003e\r\n\r\nUsers or third parties affected by the receipt of unsolicited messages addressed to a plurality of people may report it to \u003ca href=\"/\" style=\"color: #8cc63e;\"\u003ewww.kiwilimon.com\u003c/a\u003e by sending a message to the following email address: \u003cspan style=\"color: #8cc63e;\"\u003esoporte@kiwilimon.com\u003c/span\u003e.\r\n\r\n\u003cbr /\u003e\u003cbr /\u003e\r\n\r\nLast updated: June 13, 2022.\r\n"};
KL.LoadedModules.push('politicas-de-uso');
KL.currenttemplate=WA.templates['politicas-de-uso'];
KL.LoadedModules.push('menu-informacion');
KL.LoadedModules.push('slider');
KL.LoadedModules.push('tools');
KL.LoadedModules.push('loginset');
KL.LoadedModules.push('feed');