{"id":885,"date":"2024-10-28T14:03:43","date_gmt":"2024-10-28T14:03:43","guid":{"rendered":"https:\/\/cloudbyte7.com\/?page_id=885"},"modified":"2024-10-28T14:03:46","modified_gmt":"2024-10-28T14:03:46","slug":"contact","status":"publish","type":"page","link":"https:\/\/cloudbyte7.com\/ru\/contact\/","title":{"rendered":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442"},"content":{"rendered":"<div class=\"mx-5 sm:mx-0 prose leading-relaxed text-lg mb-5 text-left wp-paragraph\">\n<p>Cloud Byte 7<\/p>\n<\/div><div class=\"mx-5 sm:mx-0 prose leading-relaxed text-lg mb-5 text-left wp-paragraph\">\n<p>\u0425\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0441\u0432\u043e\u0438\u043c\u0438 \u0441\u043e\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u043c\u0438 \u0438\u043b\u0438 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0438\u0442\u044c \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f? \u0412\u0430\u0448\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e\u0447\u0435\u043d\u044c \u0432\u0430\u0436\u043d\u043e \u0434\u043b\u044f \u043d\u0430\u0441!<\/p>\n<\/div><div class=\"mx-5 sm:mx-0 prose leading-relaxed text-lg mb-5 text-left wp-paragraph\">\n<p>\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0443 \u043d\u0438\u0436\u0435, \u0438 \u043c\u044b \u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u043e \u043e\u0442\u0432\u0435\u0442\u0438\u043c \u0432\u0430\u043c. \u0412 Cloud Byte 7 \u043c\u044b \u0432\u044b\u0441\u043e\u043a\u043e \u0446\u0435\u043d\u0438\u043c \u0432\u0430\u0448\u0438 \u043e\u0442\u0437\u044b\u0432\u044b, \u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u043e\u043d\u0438 \u0441\u043f\u043e\u0441\u043e\u0431\u0441\u0442\u0432\u0443\u044e\u0442 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u043c\u0443 \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0443\u0441\u043b\u0443\u0433. \u041c\u044b \u043f\u0440\u0438\u0432\u0435\u0440\u0436\u0435\u043d\u044b \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0430\u043c \u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u043e\u0441\u0442\u0438 \u0438 \u0443\u0432\u0430\u0436\u0430\u0435\u043c \u0432\u0430\u0448\u0443 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c. \u0411\u0443\u0434\u044c\u0442\u0435 \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0432\u0441\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u0430\u044f \u0432\u0430\u043c\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0441\u0442\u0430\u043d\u0435\u0442\u0441\u044f \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439.<\/p>\n<\/div><div class=\"wp-block-lazyblock-contact lazyblock-contact-ZkQ07Q\"><script type=\"module\"> import { Application, Controller } from \"\/wp-content\/themes\/twentytwentyone\/assets\/js\/stimulus.min.js\"; let Stimulus = Application.start(); Stimulus.register(\"contact\", class extends Controller { static get targets() { return [ \"name\", \"email\", \"message\", \"button\", \"alertMessage\", \"returnMessage\" ]; } getName() { return this.nameTarget.value; } getEmail() { return this.emailTarget.value; } getMessage() { return this.messageTarget.value; } _beforeSend(response) { response.text().then((result) => { result = JSON.parse(result); this.alertMessageTarget.innerHTML = result.alert; }) } btnSubmitDisabled(event) { if (this.getName() != \"\" && this.getEmail() != \"\" && this.getMessage() != \"\") this.buttonTarget.disabled = false; else this.buttonTarget.disabled = true; } submit() { this.buttonTarget.disabled = true; let adminAjax = location.origin + '\/wp-json\/v1\/send_contact_message'; let objectContact = { name: this.getName(), email: this.getEmail(), message: this.getMessage() }; fetch(adminAjax, { method: 'POST', credentials: 'same-origin', headers: {'Content-Type': 'application\/x-www-form-urlencoded; charset=utf-8'}, body: JSON.stringify(objectContact) }).then(response => this._beforeSend(response)); this.nameTarget.value = ''; this.emailTarget.value = ''; this.messageTarget.value = ''; this.buttonTarget.disabled = false; } }) <\/script><section data-controller=\"contact\" class=\"mx-5 sm:mx-0 text-gray-600 body-font relative\">\n    <div class=\"container px-5 mx-auto\">\n      <div class=\"lg:w-1\/2 md:w-2\/3 mx-auto\">\n        <div class=\"flex flex-wrap -m-2\">\n            <div class=\"p-2 w-1\/2\">\n                <div class=\"relative\">\n                    <label for=\"name\" class=\"leading-7 text-sm text-gray-600\">\n                        \u041a\u041e\u041d\u0422\u0410\u041a\u0422\u041d\u041e\u0415_\u0418\u041c\u042f                    <\/label>\n                    <input data-contact-target=\"name\" data-action=\"contact#btnSubmitDisabled\" type=\"text\" id=\"name\" name=\"name\" class=\"w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out\">\n                <\/div>\n            <\/div>\n            <div class=\"p-2 w-1\/2\">\n                <div class=\"relative\">\n                    <label for=\"email\" class=\"leading-7 text-sm text-gray-600\">\n                        \u041a\u041e\u041d\u0422\u0410\u041a\u0422\u041d\u042b\u0419_EMAIL                    <\/label>\n                    <input data-contact-target=\"email\" data-action=\"contact#btnSubmitDisabled\" type=\"email\" id=\"email\" name=\"email\" class=\"w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out\">\n                <\/div>\n            <\/div>\n            <div class=\"p-2 w-full\">\n                <div class=\"relative\">\n                    <label for=\"message\" class=\"leading-7 text-sm text-gray-600\">\n                        \u041a\u041e\u041d\u0422\u0410\u041a\u0422\u041d\u041e\u0415 \u0421\u041e\u041e\u0411\u0429\u0415\u041d\u0418\u0415                    <\/label>\n                    <textarea data-contact-target=\"message\" data-action=\"contact#btnSubmitDisabled\" id=\"message\" name=\"message\" class=\"w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 h-32 text-base outline-none text-gray-700 py-1 px-3 resize-none leading-6 transition-colors duration-200 ease-in-out\"><\/textarea>\n                <\/div>\n            <\/div>\n            <div class=\"p-2 w-full\">\n                <button data-contact-target=\"button\" data-action='contact#submit' class=\"flex mx-auto border-0 py-2 px-8 focus:outline-none rounded text-lg disabled:opacity-50\" disabled>\n                    CONTACT_SEND                <\/button>\n            <\/div>    \n            <div class=\"p-2 w-full pt-4 mt-4 text-center\" data-contact-target=\"alertMessage\">\n                <div role=\"alert\">\n                    <span class=\"block sm:inline\" data-contact-target=\"returnMessage\"><\/span>\n                <\/div>\n            <\/div>            \n        <\/div>\n      <\/div>\n    <\/div>\n<\/section>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Cloud Byte 7 \u0425\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0441\u0432\u043e\u0438\u043c\u0438 \u043c\u044b\u0441\u043b\u044f\u043c\u0438 \u0438\u043b\u0438 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0438\u0442\u044c \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f? \u0412\u0430\u0448\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e\u0447\u0435\u043d\u044c \u0432\u0430\u0436\u043d\u043e \u0434\u043b\u044f \u043d\u0430\u0441! \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0443 \u043d\u0438\u0436\u0435, \u0438 \u043d\u0430\u0448\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u043e \u043e\u0442\u0432\u0435\u0442\u0438\u0442 \u0432\u0430\u043c. \u0412 Cloud Byte 7 \u043c\u044b \u0432\u044b\u0441\u043e\u043a\u043e \u0446\u0435\u043d\u0438\u043c \u0432\u0430\u0448\u0438 \u043e\u0442\u0437\u044b\u0432\u044b, \u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u043e\u043d\u0438 \u0441\u043f\u043e\u0441\u043e\u0431\u0441\u0442\u0432\u0443\u044e\u0442 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u043c\u0443 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0443\u0441\u043b\u0443\u0433. \u041c\u044b \u0441\u0442\u0440\u0435\u043c\u0438\u043c\u0441\u044f \u043a \u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u043e\u0441\u0442\u0438 \u0438\u2026 <a class=\"more-link\" href=\"https:\/\/cloudbyte7.com\/ru\/contact\/\">\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0447\u0442\u0435\u043d\u0438\u0435 <span class=\"screen-reader-text\">\u041a\u043e\u043d\u0442\u0430\u043a\u0442<\/span><\/a><\/p>","protected":false},"author":34,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Contact - Cloud Byte 7<\/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:\/\/cloudbyte7.com\/ru\/contact\/\" \/>\n<meta property=\"og:locale\" content=\"ru_RU\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Contact - Cloud Byte 7\" \/>\n<meta property=\"og:description\" content=\"Cloud Byte 7 Want to share insights or suggest improvements? Your input means a lot to us! Please fill out the form below, and expect a prompt reply from our team. At Cloud Byte 7, we highly value your feedback, as it drives our ongoing improvements in content and services. We\u2019re committed to transparency and&hellip; Continue reading Contact\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudbyte7.com\/ru\/contact\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloud Byte 7\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-28T14:03:46+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 \u043c\u0438\u043d\u0443\u0442\u0430\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudbyte7.com\/contact\/\",\"url\":\"https:\/\/cloudbyte7.com\/contact\/\",\"name\":\"Contact - Cloud Byte 7\",\"isPartOf\":{\"@id\":\"https:\/\/cloudbyte7.com\/#website\"},\"datePublished\":\"2024-10-28T14:03:43+00:00\",\"dateModified\":\"2024-10-28T14:03:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudbyte7.com\/contact\/#breadcrumb\"},\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudbyte7.com\/contact\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudbyte7.com\/contact\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudbyte7.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Contact\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudbyte7.com\/#website\",\"url\":\"https:\/\/cloudbyte7.com\/\",\"name\":\"Cloud Byte 7\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudbyte7.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ru-RU\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Contact - Cloud Byte 7","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:\/\/cloudbyte7.com\/ru\/contact\/","og_locale":"ru_RU","og_type":"article","og_title":"Contact - Cloud Byte 7","og_description":"Cloud Byte 7 Want to share insights or suggest improvements? Your input means a lot to us! Please fill out the form below, and expect a prompt reply from our team. At Cloud Byte 7, we highly value your feedback, as it drives our ongoing improvements in content and services. We\u2019re committed to transparency and&hellip; Continue reading Contact","og_url":"https:\/\/cloudbyte7.com\/ru\/contact\/","og_site_name":"Cloud Byte 7","article_modified_time":"2024-10-28T14:03:46+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 \u043c\u0438\u043d\u0443\u0442\u0430"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudbyte7.com\/contact\/","url":"https:\/\/cloudbyte7.com\/contact\/","name":"Contact - Cloud Byte 7","isPartOf":{"@id":"https:\/\/cloudbyte7.com\/#website"},"datePublished":"2024-10-28T14:03:43+00:00","dateModified":"2024-10-28T14:03:46+00:00","breadcrumb":{"@id":"https:\/\/cloudbyte7.com\/contact\/#breadcrumb"},"inLanguage":"ru-RU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudbyte7.com\/contact\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudbyte7.com\/contact\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudbyte7.com\/"},{"@type":"ListItem","position":2,"name":"Contact"}]},{"@type":"WebSite","@id":"https:\/\/cloudbyte7.com\/#website","url":"https:\/\/cloudbyte7.com\/","name":"Cloud Byte 7","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudbyte7.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ru-RU"}]}},"_links":{"self":[{"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/pages\/885"}],"collection":[{"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/users\/34"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/comments?post=885"}],"version-history":[{"count":1,"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/pages\/885\/revisions"}],"predecessor-version":[{"id":886,"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/pages\/885\/revisions\/886"}],"wp:attachment":[{"href":"https:\/\/cloudbyte7.com\/ru\/wp-json\/wp\/v2\/media?parent=885"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}