{"id":3084,"date":"2025-10-14T17:32:09","date_gmt":"2025-10-14T14:32:09","guid":{"rendered":"https:\/\/eurojobscenter.com\/?page_id=3084"},"modified":"2025-10-14T20:03:20","modified_gmt":"2025-10-14T17:03:20","slug":"ejc-login","status":"publish","type":"page","link":"https:\/\/eurojobscenter.com\/en\/ejc-login\/","title":{"rendered":"EJC Login"},"content":{"rendered":"<style>\n.ejc-login-wrap {\n  max-width: 420px;\n  margin: 40px auto;\n  background: #fff;\n  padding: 25px 30px;\n  border-radius: 10px;\n  box-shadow: 0 4px 12px rgba(0,0,0,0.1);\n  font-family: \"Poppins\", sans-serif;\n}\n.ejc-login-wrap h2 {\n  text-align: center;\n  font-size: 22px;\n  font-weight: 600;\n  margin-bottom: 20px;\n  color: #333;\n}\n.ejc-login-wrap label {\n  display: block;\n  font-size: 14px;\n  margin-bottom: 6px;\n  color: #555;\n}\n.ejc-login-wrap input {\n  width: 100%;\n  padding: 10px 12px;\n  border: 1px solid #ccc;\n  border-radius: 6px;\n  margin-bottom: 16px;\n}\n.ejc-login-wrap button {\n  width: 100%;\n  background: #0073aa;\n  color: white;\n  border: none;\n  padding: 12px;\n  border-radius: 6px;\n  cursor: pointer;\n  font-weight: 600;\n  transition: 0.3s;\n}\n.ejc-login-wrap button:hover {\n  background: #005f8c;\n}\n#ejcResult {\n  margin-top: 10px;\n  text-align: center;\n  font-weight: 500;\n}\n<\/style>\n\n<div class=\"ejc-login-wrap\">\n  <h2>EuroJobsCenter Giri\u015f<\/h2>\n\n  <form id=\"ejcLoginForm\" action=\"\">\n    <label for=\"email\">Telefon veya E-posta<\/label>\n    <input type=\"text\" name=\"email\" id=\"email\" placeholder=\"905555555555\" required autocomplete=\"username\">\n\n    <label for=\"password\">Password<\/label>\n    <input type=\"password\" name=\"password\" id=\"password\" placeholder=\"******\" required autocomplete=\"current-password\">\n\n    <button type=\"submit\">Login<\/button>\n  <input type=\"hidden\" name=\"trp-form-language\" value=\"en\"\/><\/form>\n\n  <div id=\"ejcResult\"><\/div>\n\n  <div style=\"margin-top:15px;text-align:center;\">\n    <a href=\"https:\/\/eurojobscenter.com\/en\/kayit-formu\/\">Register<\/a> |\n    <a href=\"https:\/\/eurojobscenter.com\/en\/sifremi-unuttum\/\">Forgot my password<\/a>\n  <\/div>\n<\/div>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n  const form = document.getElementById(\"ejcLoginForm\");\n  const result = document.getElementById(\"ejcResult\");\n\n  form.addEventListener(\"submit\", async function(e) {\n    e.preventDefault();\n    result.innerHTML = \"Giri\u015f yap\u0131l\u0131yor...\";\n    result.style.color = \"#333\";\n\n    try {\n      const email = document.getElementById(\"email\").value.trim();\n      const password = document.getElementById(\"password\").value.trim();\n\n      if (!email || !password) {\n        result.innerHTML = \"\u274c L\u00fctfen t\u00fcm alanlar\u0131 doldurun.\";\n        result.style.color = \"red\";\n        return;\n      }\n\n      const params = new URLSearchParams();\n      params.append(\"email\", email);\n      params.append(\"password\", password);\n\n      const response = await fetch(\"https:\/\/crm.eurojobscenter.com\/perfex_job_api\/aday_login_v4\", {\n        method: \"POST\",\n        headers: {\n          \"Accept\": \"application\/json\",\n          \"Content-Type\": \"application\/x-www-form-urlencoded\"\n        },\n        body: params,\n        credentials: \"include\"\n      });\n\n      const text = await response.text();\n      let data;\n      try {\n        data = JSON.parse(text);\n      } catch (jsonError) {\n        console.error(\"\ud83d\udea8 JSON Parse Hatas\u0131:\", text);\n        result.innerHTML = \"\u26a0\ufe0f Sunucudan ge\u00e7ersiz yan\u0131t al\u0131nd\u0131.\";\n        result.style.color = \"red\";\n        return;\n      }\n\n      if (data.success) {\n        result.innerHTML = \"\u2705 \" + (data.message || \"Giri\u015f ba\u015far\u0131l\u0131!\");\n        result.style.color = \"green\";\n\n        if (data.token) {\n          const ex = new Date(Date.now() + 86400000 * 7).toUTCString();\n          document.cookie =\n            \"perfex_token=\" + encodeURIComponent(data.token) +\n            \"; path=\/; domain=.eurojobscenter.com; expires=\" + ex +\n            \"; SameSite=None; Secure\";\n        }\n\n        setTimeout(() => {\n          const currentURL = window.location.href;\n          const urlObj = new URL(currentURL);\n          const jobId = urlObj.searchParams.get(\"id\") || urlObj.searchParams.get(\"job_id\");\n\n          if (jobId) {\n            \/\/ \ud83c\udfaf Hangi sayfadan olursa olsun, jobId varsa CRM'deki detay\u0131na git\n            const crmJobURL = `https:\/\/crm.eurojobscenter.com\/job_view\/${jobId}?perfex_token=${encodeURIComponent(data.token)}`;\n            console.log(\"\ud83d\udd17 CRM y\u00f6nlendirme:\", crmJobURL);\n            window.location.href = crmJobURL;\n          } else {\n            \/\/ \ud83c\udfaf job_id yoksa standart ak\u0131\u015f\n            const crmSearch = `https:\/\/crm.eurojobscenter.com\/aday\/search_job?perfex_token=${encodeURIComponent(data.token)}`;\n            console.log(\"\ud83d\udd17 CRM arama y\u00f6nlendirme:\", crmSearch);\n            window.open(crmSearch, \"_blank\");\n            window.location.href = \"https:\/\/eurojobscenter.com\/tr\/ilanlar\/\";\n          }\n        }, 1200);\n\n      } else {\n        result.innerHTML = \"\u274c \" + (data.message || \"Giri\u015f ba\u015far\u0131s\u0131z.\");\n        result.style.color = \"red\";\n      }\n\n    } catch (err) {\n      console.error(\"\ud83d\udea8 Fetch hatas\u0131:\", err);\n      result.innerHTML = \"\u26a0\ufe0f Ba\u011flant\u0131 hatas\u0131. L\u00fctfen tekrar deneyin.\";\n      result.style.color = \"red\";\n    }\n  });\n});\n<\/script>","protected":false},"excerpt":{"rendered":"EuroJobsCenter Giri\u015f Telefon veya E-posta Parola Giri\u015f Yap Kay\u0131t Ol | \u015eifremi Unuttum","protected":false},"author":6,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-3084","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>EJC Login - Euro Jobs Center<\/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:\/\/eurojobscenter.com\/en\/ejc-login\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EJC Login - Euro Jobs Center\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eurojobscenter.com\/en\/ejc-login\/\" \/>\n<meta property=\"og:site_name\" content=\"Euro Jobs Center\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-14T17:03:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eurojobscenter.com\/wp-content\/uploads\/2024\/04\/1200-675-screenshot.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated 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:\/\/eurojobscenter.com\/tr\/ejc-login\/\",\"url\":\"https:\/\/eurojobscenter.com\/tr\/ejc-login\/\",\"name\":\"EJC Login - Euro Jobs Center\",\"isPartOf\":{\"@id\":\"https:\/\/eurojobscenter.com\/tr\/#website\"},\"datePublished\":\"2025-10-14T14:32:09+00:00\",\"dateModified\":\"2025-10-14T17:03:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/eurojobscenter.com\/tr\/ejc-login\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eurojobscenter.com\/tr\/ejc-login\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eurojobscenter.com\/tr\/ejc-login\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\/\/eurojobscenter.com\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"EJC Login\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eurojobscenter.com\/tr\/#website\",\"url\":\"https:\/\/eurojobscenter.com\/tr\/\",\"name\":\"Almanya \u0130\u015f Vizesi\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/eurojobscenter.com\/tr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eurojobscenter.com\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eurojobscenter.com\/tr\/#organization\",\"name\":\"Almanya \u0130\u015f Vizesi\",\"url\":\"https:\/\/eurojobscenter.com\/tr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/eurojobscenter.com\/tr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/almanyaisvizesi.com\/wp-content\/uploads\/2024\/04\/logo-v3.png\",\"contentUrl\":\"https:\/\/almanyaisvizesi.com\/wp-content\/uploads\/2024\/04\/logo-v3.png\",\"width\":302,\"height\":65,\"caption\":\"Almanya \u0130\u015f Vizesi\"},\"image\":{\"@id\":\"https:\/\/eurojobscenter.com\/tr\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.instagram.com\/almanyavizedanismanligi\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EJC Login - Euro Jobs Center","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:\/\/eurojobscenter.com\/en\/ejc-login\/","og_locale":"en_GB","og_type":"article","og_title":"EJC Login - Euro Jobs Center","og_url":"https:\/\/eurojobscenter.com\/en\/ejc-login\/","og_site_name":"Euro Jobs Center","article_modified_time":"2025-10-14T17:03:20+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/eurojobscenter.com\/wp-content\/uploads\/2024\/04\/1200-675-screenshot.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/eurojobscenter.com\/tr\/ejc-login\/","url":"https:\/\/eurojobscenter.com\/tr\/ejc-login\/","name":"EJC Login - Euro Jobs Center","isPartOf":{"@id":"https:\/\/eurojobscenter.com\/tr\/#website"},"datePublished":"2025-10-14T14:32:09+00:00","dateModified":"2025-10-14T17:03:20+00:00","breadcrumb":{"@id":"https:\/\/eurojobscenter.com\/tr\/ejc-login\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eurojobscenter.com\/tr\/ejc-login\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/eurojobscenter.com\/tr\/ejc-login\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/eurojobscenter.com\/tr\/"},{"@type":"ListItem","position":2,"name":"EJC Login"}]},{"@type":"WebSite","@id":"https:\/\/eurojobscenter.com\/tr\/#website","url":"https:\/\/eurojobscenter.com\/tr\/","name":"Almanya \u0130\u015f Vizesi","description":"","publisher":{"@id":"https:\/\/eurojobscenter.com\/tr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eurojobscenter.com\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/eurojobscenter.com\/tr\/#organization","name":"Almanya \u0130\u015f Vizesi","url":"https:\/\/eurojobscenter.com\/tr\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/eurojobscenter.com\/tr\/#\/schema\/logo\/image\/","url":"https:\/\/almanyaisvizesi.com\/wp-content\/uploads\/2024\/04\/logo-v3.png","contentUrl":"https:\/\/almanyaisvizesi.com\/wp-content\/uploads\/2024\/04\/logo-v3.png","width":302,"height":65,"caption":"Almanya \u0130\u015f Vizesi"},"image":{"@id":"https:\/\/eurojobscenter.com\/tr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.instagram.com\/almanyavizedanismanligi"]}]}},"_links":{"self":[{"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/pages\/3084","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/comments?post=3084"}],"version-history":[{"count":2,"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/pages\/3084\/revisions"}],"predecessor-version":[{"id":3086,"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/pages\/3084\/revisions\/3086"}],"wp:attachment":[{"href":"https:\/\/eurojobscenter.com\/en\/wp-json\/wp\/v2\/media?parent=3084"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}