{"id":1306,"date":"2025-06-11T14:16:10","date_gmt":"2025-06-11T14:16:10","guid":{"rendered":"http:\/\/lacialcon.com\/registrazione\/"},"modified":"2025-06-20T10:27:32","modified_gmt":"2025-06-20T10:27:32","slug":"registrazione","status":"publish","type":"page","link":"https:\/\/lacialcon.com\/en\/registrazione\/","title":{"rendered":"Registration"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.27.4&#8243; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; background_color=&#8221;#f4f4f4&#8243; sticky_enabled=&#8221;0&#8243;][et_pb_row _builder_version=&#8221;4.16&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;|||&#8221; global_colors_info=&#8221;{}&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.27.4&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221; text_orientation=&#8221;center&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h1>Registration<\/h1>\n<p>Fill out the form below with the <strong>Client Code<\/strong> found inside our invoices and create a secure password.<\/p>\n<p><strong>You will receive an email to confirm your registration to the address linked to your customer code<\/strong><\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.27.4&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p style=\"text-align: center;\">\t<link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/toastify-js\/src\/toastify.min.css\">\n\t<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/toastify-js\"><\/script>\n    <form id=\"customer-registration-form\" method=\"post\">\n\t\t<div class=\"form-inputs\">\n\t\t\t<label for=\"customer_code\">Customer Code *<\/label>\n\t\t\t<input type=\"text\" id=\"customer_code\" name=\"customer_code\" required>\n\n\t\t\t<label for=\"password\">Password *<\/label>\n\t\t\t<div class=\"password-wrapper\" style=\"position: relative;\">\n\t\t\t\t<input type=\"password\" id=\"password\" name=\"password\" required pattern=\"(?=.*[a-z])(?=.*[A-Z])(?=.*\\d).{8,}\" style=\"padding-right: 40px;\">\n\t\t\t\t<button type=\"button\" id=\"toggle-password\" aria-label=\"Toggle Password Visibility\"\n\t\t\t\t\tstyle=\"position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer;\">\n\t\t\t\t\t\ud83d\udc41\n\t\t\t\t<\/button>\n\t\t\t<\/div>\n\t\t\t<p class=\"psw-detail\">\n\t\t\t\tMust contain at least one number, one uppercase and lowercase letter, and at least 8 or more characters\t\t\t<\/p>\n\t\t<\/div>\n\t\t<label class=\"privacy-label\">\n\t\t\t<input type=\"checkbox\" name=\"privacy\" id=\"privacy\" required>\n\t\t\t<span>I accept the terms and conditions of the <a href=\"\/en\/privacy-policy\" target=\"_blank\">privacy policy<\/a> (EU Regulation 2016\/679)*<\/span>\n\t\t<\/label>\n\t\t<input type=\"hidden\" id=\"email\" name=\"email\">\n        <input type=\"submit\" value=\"Register\">\n    <\/form>\n\n    <script>\n\t\tdocument.getElementById('toggle-password').addEventListener('click', function () {\n\t\t\tconst passwordInput = document.getElementById('password');\n\t\t\tconst isVisible = passwordInput.type === 'text';\n\t\t\tpasswordInput.type = isVisible ? 'password' : 'text';\n\t\t\tthis.textContent = isVisible ? '\ud83d\udc41' : '\u2715';\n\t\t});\n\t\tdocument.getElementById('customer-registration-form').addEventListener('submit', function(e) {\n\t\t\te.preventDefault();\n\t\t\tconst form = e.target;\n\t\t\tconst customerCode = form.customer_code.value;\n\t\t\t\n\t\t\tif (!form.privacy.checked) {\n\t\t\t\tToastify({\n\t\t\t\t\ttext: \"You must accept the privacy policy to proceed.\",\n\t\t\t\t\tduration: 5000,\n\t\t\t\t\tclose: true,\n\t\t\t\t\tgravity: \"top\",\n\t\t\t\t\tposition: \"center\",\n\t\t\t\t\tbackgroundColor: \"#FF5A5F\"\n\t\t\t\t}).showToast();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tfetch('https:\/\/lacialcon.com\/wp-admin\/admin-ajax.php?action=validate_customer_code', {\n\t\t\t\tmethod: 'POST',\n\t\t\t\theaders: {'Content-Type': 'application\/x-www-form-urlencoded'},\n\t\t\t\tbody: new URLSearchParams({customer_code: customerCode})\n\t\t\t})\n\t\t\t.then(res => res.json())\n\t\t\t.then(data => {\n\t\t\t\tconsole.log(\"\u2705 Risposta JSON completa:\", data);\n\n\t\t\t\tif (data.success) {\n\t\t\t\t\tconst emailField = form.querySelector('[name=\"email\"]');\n\t\t\t\t\temailField.value = data.data.email;\n\n\t\t\t\t\tconsole.log(\"\u2192 Email ricevuta dal server:\", data.data.email);\n\t\t\t\t\tconsole.log(\"\u2192 Email inserita nel campo hidden:\", emailField.value);\n\n\t\t\t\t\tform.submit(); \/\/ ora puoi riattivarlo\n\t\t\t\t} else {\n\t\t\t\t\tToastify({\n\t\t\t\t\t\ttext: data.data && data.data.message ? data.data.message : \"An unexpected error occurred.\",\n\t\t\t\t\t\tduration: 5000,\n\t\t\t\t\t\tclose: true,\n\t\t\t\t\t\tgravity: \"top\",\n\t\t\t\t\t\tposition: \"center\",\n\t\t\t\t\t\tbackgroundColor: \"#FF5A5F\"\n\t\t\t\t\t}).showToast();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n    <\/script>\n    <\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Registration Fill out the form below with the Client Code found inside our invoices and create a secure password. You will receive an email to confirm your registration to the address linked to your customer code\t<link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/toastify-js\/src\/toastify.min.css\">\n\t<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/toastify-js\"><\/script>\n    <form id=\"customer-registration-form\" method=\"post\">\n\t\t<div class=\"form-inputs\">\n\t\t\t<label for=\"customer_code\">Customer Code *<\/label>\n\t\t\t<input type=\"text\" id=\"customer_code\" name=\"customer_code\" required>\n\n\t\t\t<label for=\"password\">Password *<\/label>\n\t\t\t<div class=\"password-wrapper\" style=\"position: relative;\">\n\t\t\t\t<input type=\"password\" id=\"password\" name=\"password\" required pattern=\"(?=.*[a-z])(?=.*[A-Z])(?=.*\\d).{8,}\" style=\"padding-right: 40px;\">\n\t\t\t\t<button type=\"button\" id=\"toggle-password\" aria-label=\"Toggle Password Visibility\"\n\t\t\t\t\tstyle=\"position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer;\">\n\t\t\t\t\t\ud83d\udc41\n\t\t\t\t<\/button>\n\t\t\t<\/div>\n\t\t\t<p class=\"psw-detail\">\n\t\t\t\tMust contain at least one number, one uppercase and lowercase letter, and at least 8 or more characters\t\t\t<\/p>\n\t\t<\/div>\n\t\t<label class=\"privacy-label\">\n\t\t\t<input type=\"checkbox\" name=\"privacy\" id=\"privacy\" required>\n\t\t\t<span>I accept the terms and conditions of the <a href=\"\/en\/privacy-policy\" target=\"_blank\">privacy policy<\/a> (EU Regulation 2016\/679)*<\/span>\n\t\t<\/label>\n\t\t<input type=\"hidden\" id=\"email\" name=\"email\">\n        <input type=\"submit\" value=\"Register\">\n    <\/form>\n\n    <script>\n\t\tdocument.getElementById('toggle-password').addEventListener('click', function () {\n\t\t\tconst passwordInput = document.getElementById('password');\n\t\t\tconst isVisible = passwordInput.type === 'text';\n\t\t\tpasswordInput.type = isVisible ? 'password' : 'text';\n\t\t\tthis.textContent = isVisible ? '\ud83d\udc41' : '\u2715';\n\t\t});\n\t\tdocument.getElementById('customer-registration-form').addEventListener('submit', function(e) {\n\t\t\te.preventDefault();\n\t\t\tconst form = e.target;\n\t\t\tconst customerCode = form.customer_code.value;\n\t\t\t\n\t\t\tif (!form.privacy.checked) {\n\t\t\t\tToastify({\n\t\t\t\t\ttext: \"You must accept the privacy policy to proceed.\",\n\t\t\t\t\tduration: 5000,\n\t\t\t\t\tclose: true,\n\t\t\t\t\tgravity: \"top\",\n\t\t\t\t\tposition: \"center\",\n\t\t\t\t\tbackgroundColor: \"#FF5A5F\"\n\t\t\t\t}).showToast();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tfetch('https:\/\/lacialcon.com\/wp-admin\/admin-ajax.php?action=validate_customer_code', {\n\t\t\t\tmethod: 'POST',\n\t\t\t\theaders: {'Content-Type': 'application\/x-www-form-urlencoded'},\n\t\t\t\tbody: new URLSearchParams({customer_code: customerCode})\n\t\t\t})\n\t\t\t.then(res => res.json())\n\t\t\t.then(data => {\n\t\t\t\tconsole.log(\"\u2705 Risposta JSON completa:\", data);\n\n\t\t\t\tif (data.success) {\n\t\t\t\t\tconst emailField = form.querySelector('[name=\"email\"]');\n\t\t\t\t\temailField.value = data.data.email;\n\n\t\t\t\t\tconsole.log(\"\u2192 Email ricevuta dal server:\", data.data.email);\n\t\t\t\t\tconsole.log(\"\u2192 Email inserita nel campo hidden:\", emailField.value);\n\n\t\t\t\t\tform.submit(); \/\/ ora puoi riattivarlo\n\t\t\t\t} else {\n\t\t\t\t\tToastify({\n\t\t\t\t\t\ttext: data.data && data.data.message ? data.data.message : \"An unexpected error occurred.\",\n\t\t\t\t\t\tduration: 5000,\n\t\t\t\t\t\tclose: true,\n\t\t\t\t\t\tgravity: \"top\",\n\t\t\t\t\t\tposition: \"center\",\n\t\t\t\t\t\tbackgroundColor: \"#FF5A5F\"\n\t\t\t\t\t}).showToast();\n\t\t\t\t}\n\t\t\t});\n\t\t});\n    <\/script>\n    <\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"footnotes":""},"class_list":["post-1306","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Registration - La Cialcon<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lacialcon.com\/en\/registrazione\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Registration - La Cialcon\" \/>\n<meta property=\"og:description\" content=\"Registration Fill out the form below with the Client Code found inside our invoices and create a secure password. You will receive an email to confirm your registration to the address linked to your customer code\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lacialcon.com\/en\/registrazione\/\" \/>\n<meta property=\"og:site_name\" content=\"La Cialcon\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-20T10:27:32+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lacialcon.com\/en\/registrazione\/\",\"url\":\"https:\/\/lacialcon.com\/en\/registrazione\/\",\"name\":\"Registration - La Cialcon\",\"isPartOf\":{\"@id\":\"https:\/\/lacialcon.com\/en\/#website\"},\"datePublished\":\"2025-06-11T14:16:10+00:00\",\"dateModified\":\"2025-06-20T10:27:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/lacialcon.com\/en\/registrazione\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lacialcon.com\/en\/registrazione\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lacialcon.com\/en\/registrazione\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/lacialcon.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Registration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/lacialcon.com\/en\/#website\",\"url\":\"https:\/\/lacialcon.com\/en\/\",\"name\":\"La Cialcon\",\"description\":\"Cialde e Coni per Gelati\",\"publisher\":{\"@id\":\"https:\/\/lacialcon.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/lacialcon.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/lacialcon.com\/en\/#organization\",\"name\":\"La Cialcon S.R.L.\",\"url\":\"https:\/\/lacialcon.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/lacialcon.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/lacialcon.com\/wp-content\/uploads\/2024\/11\/logo-lacialcon.png\",\"contentUrl\":\"https:\/\/lacialcon.com\/wp-content\/uploads\/2024\/11\/logo-lacialcon.png\",\"width\":408,\"height\":103,\"caption\":\"La Cialcon S.R.L.\"},\"image\":{\"@id\":\"https:\/\/lacialcon.com\/en\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Registration - La Cialcon","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lacialcon.com\/en\/registrazione\/","og_locale":"en_US","og_type":"article","og_title":"Registration - La Cialcon","og_description":"Registration Fill out the form below with the Client Code found inside our invoices and create a secure password. You will receive an email to confirm your registration to the address linked to your customer code","og_url":"https:\/\/lacialcon.com\/en\/registrazione\/","og_site_name":"La Cialcon","article_modified_time":"2025-06-20T10:27:32+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lacialcon.com\/en\/registrazione\/","url":"https:\/\/lacialcon.com\/en\/registrazione\/","name":"Registration - La Cialcon","isPartOf":{"@id":"https:\/\/lacialcon.com\/en\/#website"},"datePublished":"2025-06-11T14:16:10+00:00","dateModified":"2025-06-20T10:27:32+00:00","breadcrumb":{"@id":"https:\/\/lacialcon.com\/en\/registrazione\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lacialcon.com\/en\/registrazione\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lacialcon.com\/en\/registrazione\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lacialcon.com\/en\/"},{"@type":"ListItem","position":2,"name":"Registration"}]},{"@type":"WebSite","@id":"https:\/\/lacialcon.com\/en\/#website","url":"https:\/\/lacialcon.com\/en\/","name":"La Cialcon","description":"Cialde e Coni per Gelati","publisher":{"@id":"https:\/\/lacialcon.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lacialcon.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/lacialcon.com\/en\/#organization","name":"La Cialcon S.R.L.","url":"https:\/\/lacialcon.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lacialcon.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/lacialcon.com\/wp-content\/uploads\/2024\/11\/logo-lacialcon.png","contentUrl":"https:\/\/lacialcon.com\/wp-content\/uploads\/2024\/11\/logo-lacialcon.png","width":408,"height":103,"caption":"La Cialcon S.R.L."},"image":{"@id":"https:\/\/lacialcon.com\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/pages\/1306","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/comments?post=1306"}],"version-history":[{"count":4,"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/pages\/1306\/revisions"}],"predecessor-version":[{"id":1310,"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/pages\/1306\/revisions\/1310"}],"wp:attachment":[{"href":"https:\/\/lacialcon.com\/en\/wp-json\/wp\/v2\/media?parent=1306"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}