{"id":60375,"date":"2025-04-23T11:40:00","date_gmt":"2025-04-23T15:40:00","guid":{"rendered":"https:\/\/www.js-relocation.com\/profil\/"},"modified":"2026-07-24T04:47:26","modified_gmt":"2026-07-24T08:47:26","slug":"profil","status":"publish","type":"page","link":"https:\/\/www.js-relocation.com\/en\/profil\/","title":{"rendered":"Profil"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"60375\" class=\"elementor elementor-60375 elementor-53178\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4da26a3 e-flex e-con-boxed e-con e-parent\" data-id=\"4da26a3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d4bcca1 e-con-full e-flex e-con e-child\" data-id=\"d4bcca1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f78ea6 elementor-widget elementor-widget-text-editor\" data-id=\"1f78ea6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>My space<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2bcc45b elementor-widget elementor-widget-text-editor\" data-id=\"2bcc45b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Hosts and Tenants<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3c22e5e5 e-con-full e-flex e-con e-parent\" data-id=\"3c22e5e5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-24fe176 elementor-widget elementor-widget-html\" data-id=\"24fe176\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>document.addEventListener('DOMContentLoaded', function () {\n\n    function checkAddressPrivacyBox() {\n        const labels = Array.from(document.querySelectorAll('label'));\n\n        const targetLabel = labels.find(label =>label.textContent.trim().includes('Votre adresse compl\u00e8te sera toujours masqu\u00e9e aux clients')\n        );\n\n        if (!targetLabel) return false;\n\n        const checkbox =\n            targetLabel.querySelector('input[type=\"checkbox\"]') ||\n            targetLabel.closest('.es-field')?.querySelector('input[type=\"checkbox\"]') ||\n            targetLabel.previousElementSibling;\n\n        if (checkbox && checkbox.type === 'checkbox' && !checkbox.checked) {\n            checkbox.checked = true;\n            checkbox.dispatchEvent(new Event('change', { bubbles: true }));\n            checkbox.dispatchEvent(new Event('input', { bubbles: true }));\n            console.log('Adresse masqu\u00e9e coch\u00e9e par d\u00e9faut');\n            return true;\n        }\n\n        return false;\n    }\n\n    checkAddressPrivacyBox();\n\n    setTimeout(checkAddressPrivacyBox, 300);\n    setTimeout(checkAddressPrivacyBox, 800);\n    setTimeout(checkAddressPrivacyBox, 1500);\n\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ff1b8b3 elementor-widget elementor-widget-html\" data-id=\"ff1b8b3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>document.addEventListener('DOMContentLoaded', function () {\n  const profileForm = Array.from(document.querySelectorAll('form.js-es-ajax-form'))\n    .find(f => f.querySelector('[name=\"action\"]')?.value === 'es_profile_save_info');\n\n  if (!profileForm) {\n    console.log('PROFILE FORM NOT FOUND');\n    return;\n  }\n\n  function getValue(selector) {\n    return profileForm.querySelector(selector)?.value || '';\n  }\n\n  profileForm.addEventListener('submit', function () {\n    setTimeout(function () {\n      const firstname = getValue('[name=\"es_agent[first_name]\"]');\n      const lastname = getValue('[name=\"es_agent[last_name]\"]');\n      const email = getValue('[name=\"es_agent[user_email]\"]');\n      const phone = getValue('[name=\"es_agent[contacts][0][phone][tel]\"]');\n      const address = getValue('[name=\"es_agent[address]\"]');\n\n      const payload = {\n        fields: [\n          { name: 'firstname', value: firstname },\n          { name: 'lastname', value: lastname },\n          { name: 'email', value: email },\n          { name: 'phone', value: phone },\n          { name: 'address', value: address }\n        ],\n        context: {\n          pageUri: window.location.href,\n          pageName: document.title\n        }\n      };\n\n      console.log('HUBSPOT PROFILE PAYLOAD', payload);\n\n      fetch('https:\/\/api.hsforms.com\/submissions\/v3\/integration\/submit\/6587955\/b18601f8-4287-439f-86dd-d9bb930a5c53', {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application\/json'\n        },\n        body: JSON.stringify(payload)\n      })\n      .then(async response => {\n        const text = await response.text();\n        console.log('HUBSPOT PROFILE RESPONSE STATUS', response.status);\n        console.log('HUBSPOT PROFILE RESPONSE BODY', text);\n      })\n      .catch(error => {\n        console.error('HUBSPOT PROFILE ERROR', error);\n      });\n\n    }, 1500);\n  });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-60c42fe0 elementor-widget elementor-widget-shortcode\" data-id=\"60c42fe0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"es-auth js-es-auth content-font\">\n    \t    \t    <div class=\"es-auth__item es-auth__login-buttons \">\n\t        <h3 class=\"heading-font\">Access your owner portal<\/h3>\n\t\n\t        <p>Log in to submit and manage your property.<\/p>\n\t\n\t\t\t\t\t\t\t        <a href=\"#\" data-auth-item=\"login-form\" class=\"js-es-auth-item__switcher es-btn es-btn--default es-btn--auth \">\n\t\t\tLog in with email        <\/a>\n\t\n\t\n    <div class=\"es-space\"><\/div>\n\n    \t<div class=\"es-auth-footer\">\n\t\t<div class=\"es-auth-footer__inner\">\n\t\t\t<div class=\"es-auth-footer__left\">\n\t\t\t\t<span class=\"es-icon es-icon_glasses es-secondary-color\"><\/span>\n\t\t\t\t<div class=\"es-auth-footer__content\">\n\t\t\t\t\t<b>Real estate professional?<\/b>\n\t\t\t\t\t<p>Manage your listings, profile and more.<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<a href=\"#\" data-auth-item=\"agent-register-buttons\" class=\"js-es-auth-item__switcher es-btn es-btn--secondary es-btn--bordered\">Sign up as agent<\/a>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\t    <div class=\"es-auth__item js-es-auth__login-form es-auth__login-form es-auth__item--hidden\">\n\t        <h3 class=\"heading-font\">Access your owner portal<\/h3>\n\t\n\t        <p>Log in to submit and manage your property.<\/p>\n\t\n    <div class=\"all-login-back\">\n        <a href=\"#\" data-auth-item=\"login-buttons\" class=\"js-es-auth-item__switcher\">\n            <span class=\"es-icon es-icon_chevron-left\"><\/span>All log in options        <\/a>\n    <\/div>\n\n    <form action=\"\" method=\"POST\">\n\t\t\n                               <div class='es-field es-field__es_user_login es-field--text '>\n                                   <label for='es_user_login-6a68654fb52a4'><span class='es-field__label'>Email<\/span><input id=\"es_user_login-6a68654fb52a4\" name=\"es_user_login\" class=\"es-field__input\" required=\"required\" autocomplete=\"username\" type=\"text\" value=\"\" \/><\/label>\n                               <\/div>\n                           \n                                   <div class='es-field es-field__es_user_password es-field--password '>\n                                       <label for='es_user_password-6a68654fb54e0'><span class='es-field__label'>Password<\/span><div class='es-input__wrap'><input id=\"es_user_password-6a68654fb54e0\" name=\"es_user_password\" class=\"es-field__input\" required=\"required\" autocomplete=\"current-password\" type=\"password\" value=\"\" \/><a href='#' aria-label='Show or Hide password' class='es-toggle-pwd js-es-toggle-pwd'><span class='es-icon es-icon_eye'><\/span><\/a><\/div><\/label>\n                                   <\/div>\n                                       <div class=\"forgot-pwd\">\n            <a href=\"#\" data-auth-item=\"reset-form\" class=\"js-es-auth-item__switcher\">Forgot password?<\/a>\n        <\/div>\n\n\t\t        <input type=\"hidden\" name=\"uniqid\" value=\"6a68654fb550c\"\/>\n\t\t<input type=\"hidden\" id=\"es_auth_nonce_6a68654fb550c\" name=\"es_auth_nonce_6a68654fb550c\" value=\"a6861ce462\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/en\/wp-json\/wp\/v2\/pages\/60375\" \/>\t            <button type=\"submit\" class=\"es-btn es-btn--primary js-es-btn--login es-btn--login\" disabled>Log in<\/button>\n    <\/form>\n\n\t    <div class=\"es-space\"><\/div>\n<\/div>\n\t    <div class=\"es-auth__item es-auth__reset-form es-auth__item--hidden\">\n    <h3 class=\"heading-font\">Reset password<\/h3>\n    <p>Enter your email address and we will send you a link to change your password.<\/p>\n\n    <form action=\"\" method=\"POST\">\n\t\t\n        <input type=\"hidden\" name=\"uniqid\" value=\"6a68654fb55cd\"\/>\n\n\t\t\t\t\t\n                               <div class='es-field es-field__es_user_email es-field--email '>\n                                   <label for='es_user_email-6a68654fb55d4'><span class='es-field__label'>Email<\/span><input id=\"es_user_email-6a68654fb55d4\" name=\"es_user_email\" class=\"es-field__input\" required=\"required\" autocomplete=\"username\" type=\"email\" value=\"\" \/><\/label>\n                               <\/div>\n                           \t\t\t<input type=\"hidden\" id=\"es_retrieve_pwd_nonce_6a68654fb55cd\" name=\"es_retrieve_pwd_nonce_6a68654fb55cd\" value=\"6603601823\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/en\/wp-json\/wp\/v2\/pages\/60375\" \/>\t\t\t            <button type=\"submit\" class=\"es-btn es-btn--primary es-btn--reset\">Send reset link<\/button>\n\t\t\n        <div><a href=\"#\" data-auth-item=\"login-buttons\" class=\"js-es-auth-item__switcher login-back\"><span class=\"es-icon es-icon_chevron-left\"><\/span>Back to login<\/a><\/div>\n    <\/form>\n    <div class=\"es-space\"><\/div>\n<\/div>\n\t    \t                <div class=\"es-auth__item es-auth__agent-register-form es-auth__item--hidden\">\n\t\t\t<h3 class=\"heading-font\">Register as an owner<\/h3>\n\t\n\t\t\t<p>Manage your listings, your profile, and more.<\/p>\n\t\n\t<div class=\"all-login-back\">\n\t\t<a href=\"#\" class=\"js-es-auth-item__switcher\" data-auth-item=\"agent-register-buttons\">\n\t\t\t<span class=\"es-icon es-icon_chevron-left\"><\/span>All sign up options\t\t<\/a>\n\t<\/div>\n\n\t<form action=\"\" method=\"POST\">\n\t\t        <input type=\"hidden\" name=\"uniqid\" value=\"6a68654fb5699\"\/>\n        <input type=\"hidden\" id=\"es_register_nonce_6a68654fb5699\" name=\"es_register_nonce_6a68654fb5699\" value=\"74c4a362bb\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/en\/wp-json\/wp\/v2\/pages\/60375\" \/><input id=\"redirect_url-6a68654fb5707\" name=\"redirect_url\" class=\"es-field__input\" type=\"hidden\" value=\"\" \/><input id=\"es_type-6a68654fb5729\" name=\"es_type\" class=\"es-field__input\" type=\"hidden\" value=\"agent\" \/>\n                               <div class='es-field es-field__es_extra_info es-field--text '>\n                                   <label for='es_extra_info-6a68654fb573f'><input id=\"es_extra_info-6a68654fb573f\" name=\"es_extra_info\" class=\"es-field__input\" type=\"text\" value=\"\" \/><\/label>\n                               <\/div>\n                           \n                               <div class='es-field es-field__es_user_email es-field--email '>\n                                   <label for='es_user_email-6a68654fb5760'><span class='es-field__label'>Email *<\/span><input id=\"es_user_email-6a68654fb5760\" name=\"es_user_email\" class=\"es-field__input\" required=\"required\" type=\"email\" value=\"\" \/><p class='es-field__description'>You'll use it to sign in, and we'll use it to contact you.<\/p><\/label>\n                               <\/div>\n                           \n                               <div class='es-field es-field__es_phone es-field--phone '>\n                                   <div><span class='es-field__label'>Phone<\/span>\n                               <div class='js-es-field es-field es-field__code es-field--select '>\n                                   <label for='es-field-code-6a68654fb59a1'>\n\t\t\t<select id=\"es-field-code-6a68654fb59a1\" name=\"es_phone[code]\" class=\"js-es-phone-field es-field__input\" data-codes=\"{&quot;US&quot;:&quot;+1&quot;,&quot;CA&quot;:&quot;+1&quot;,&quot;GB&quot;:&quot;+44&quot;,&quot;PL&quot;:&quot;+48&quot;,&quot;DE&quot;:&quot;+49&quot;,&quot;ES&quot;:&quot;+34&quot;,&quot;FR&quot;:&quot;+33&quot;,&quot;AU&quot;:&quot;+61&quot;,&quot;AT&quot;:&quot;+43&quot;,&quot;BE&quot;:&quot;+32&quot;,&quot;CL&quot;:&quot;+56&quot;,&quot;CY&quot;:&quot;+357&quot;,&quot;CZ&quot;:&quot;+420&quot;,&quot;DK&quot;:&quot;+45&quot;,&quot;EG&quot;:&quot;+20&quot;,&quot;FI&quot;:&quot;+358&quot;,&quot;GE&quot;:&quot;+995&quot;,&quot;GR&quot;:&quot;+30&quot;,&quot;IL&quot;:&quot;+972&quot;,&quot;LV&quot;:&quot;+371&quot;,&quot;LT&quot;:&quot;+370&quot;,&quot;MC&quot;:&quot;+377&quot;,&quot;NL&quot;:&quot;+31&quot;,&quot;PH&quot;:&quot;+63&quot;,&quot;PT&quot;:&quot;+351&quot;,&quot;SE&quot;:&quot;+46&quot;,&quot;IT&quot;:&quot;+39&quot;,&quot;ZA&quot;:&quot;+27&quot;}\" data-icons=\"{&quot;US&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/united-states-of-america-flag.svg&quot;,&quot;CA&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/canada-flag.svg&quot;,&quot;GB&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/united-kingdom-flag.svg&quot;,&quot;PL&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/poland-flag.svg&quot;,&quot;DE&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/germany-flag.svg&quot;,&quot;ES&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/spain-flag.svg&quot;,&quot;FR&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/france-flag.svg&quot;,&quot;AU&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/australia-flag.svg&quot;,&quot;AT&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/austria-flag.svg&quot;,&quot;BE&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/belgium-flag.svg&quot;,&quot;CL&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/chile-flag.svg&quot;,&quot;CY&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/cyprus-flag.svg&quot;,&quot;CZ&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/czech-republic-flag.svg&quot;,&quot;DK&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/denmark-flag.svg&quot;,&quot;EG&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/egypt-flag.svg&quot;,&quot;FI&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/finland-flag.svg&quot;,&quot;GE&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/georgia-flag.svg&quot;,&quot;GR&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/greece-flag.svg&quot;,&quot;IL&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/israel-flag.svg&quot;,&quot;LV&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/latvia-flag.svg&quot;,&quot;LT&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/lithuania-flag.svg&quot;,&quot;MC&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/monaco-flag.svg&quot;,&quot;NL&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/netherlands-flag.svg&quot;,&quot;PH&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/philippines-flag.svg&quot;,&quot;PT&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/portugal-flag.svg&quot;,&quot;SE&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/sweden-flag.svg&quot;,&quot;IT&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/italy-flag.svg&quot;,&quot;ZA&quot;:&quot;https:\\\/\\\/www.js-relocation.com\\\/wp-content\\\/plugins\\\/estatik\\\/\\\/public\\\/img\\\/flags\\\/south-africa-flag.svg&quot;}\" ><option value=\"US\" >USA<\/option><option value=\"CA\" >Canada<\/option><option value=\"GB\" >Grande-Bretagne<\/option><option value=\"PL\" >Poland<\/option><option value=\"DE\" >Allemagne<\/option><option value=\"ES\" >Espagne<\/option><option value=\"FR\" >France<\/option><option value=\"AU\" >Australia<\/option><option value=\"AT\" >Austria<\/option><option value=\"BE\" >Belgium<\/option><option value=\"CL\" >Chile<\/option><option value=\"CY\" >Cyprus<\/option><option value=\"CZ\" >Czech Republic<\/option><option value=\"DK\" >Denmark<\/option><option value=\"EG\" >Egypt<\/option><option value=\"FI\" >Finland<\/option><option value=\"GE\" >Georgia<\/option><option value=\"GR\" >Greece<\/option><option value=\"IL\" >Israel<\/option><option value=\"LV\" >Latvia<\/option><option value=\"LT\" >Lithuania<\/option><option value=\"MC\" >Monaco<\/option><option value=\"NL\" >Pays-Bas<\/option><option value=\"PH\" >Philippines<\/option><option value=\"PT\" >Portugal<\/option><option value=\"SE\" >Sweden<\/option><option value=\"IT\" >Italie<\/option><option value=\"ZA\" >South Africa<\/option><option value=\"0\" >Other<\/option><\/select>\n\t\t<\/label>\n                               <\/div>\n                           \n                               <div class='es-field es-field__tel es-field--text '>\n                                   <label for='es-field-tel-6a68654fb59a3'><input id=\"es-field-tel-6a68654fb59a3\" name=\"es_phone[tel]\" class=\"js-es-phone es-field__input\" maxlength=\"40\" minlength=\"4\" pattern=\"+?[0-9]+\" type=\"text\" value=\"\" \/><\/label>\n                               <\/div>\n                           <p class='es-field__description'>Buyers will use it to contact you.<\/p><\/div>\n                               <\/div>\n                           \n                                   <div class='es-field es-field__es_user_password es-field--password '>\n                                       <label for='es_user_password-6a68654fb5c02'><span class='es-field__label'>Password *<\/span><div class='es-input__wrap'><input id=\"es_user_password-6a68654fb5c02\" name=\"es_user_password\" class=\"js-es-password-field es-field__input\" required=\"required\" minlength=\"8\" type=\"password\" value=\"\" \/><a href='#' aria-label='Show or Hide password' class='es-toggle-pwd js-es-toggle-pwd'><span class='es-icon es-icon_eye'><\/span><\/a><\/div><p class='es-field__description'><ul class='es-field__validate-list'>\n                                <li class='es-validate-item es-validate-item__contain'>Can't contain the name or email address<\/li>\n                                <li class='es-validate-item es-validate-item__length'>At least 8 characters<\/li>\n                                <li class='es-validate-item es-validate-item__char'>Contains a number or symbol<\/li>\n                            <\/ul><\/p><\/label>\n                                   <\/div>\n                               \n\t\t\n\t\t<button type=\"submit\" disabled class=\"es-btn es-btn--primary es-btn--signup\">Sign up<\/button>\n\t\t<div class='es-privacy-policy-container'><div class='es-terms-text'>By clicking the \u00abSIGN UP\u00bb button you agree to the Terms of Use and Privacy Policy<\/div><\/div>\t\t<p class=\"sign-in-text\">Already have an account? <a href=\"#\" class=\"js-es-auth-item__switcher\" data-auth-item=\"login-buttons\">Log in<\/a><\/p>\n\t<\/form>\n\t<div class=\"es-space\"><\/div>\n<\/div>\n            <div class=\"es-auth__item es-auth__agent-register-buttons es-auth__item--hidden\">\n\t\t\t<h3 class=\"heading-font\">Register as an owner<\/h3>\n\t\n\t\t\t<p>Manage your listings, your profile, and more.<\/p>\n\t\n\t\t\t\t\t\t\t\t\t<a href=\"#\" data-auth-item=\"agent-register-form\" class=\"js-es-auth-item__switcher es-btn es-btn--default es-btn--auth \">Sign up with email<\/a>\n\t\n\t<p class=\"sign-in-text\">Already have an account? <a href=\"#\" data-auth-item=\"login-buttons\" class=\"js-es-auth-item__switcher\">Log in<\/a><\/p>\n\t<div class=\"es-space\"><\/div>\n<\/div>\n            \n    <\/div>\n<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>My space Hosts and Tenants<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"content-type":"","footnotes":""},"class_list":["post-60375","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/pages\/60375","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/comments?post=60375"}],"version-history":[{"count":3,"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/pages\/60375\/revisions"}],"predecessor-version":[{"id":69614,"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/pages\/60375\/revisions\/69614"}],"wp:attachment":[{"href":"https:\/\/www.js-relocation.com\/en\/wp-json\/wp\/v2\/media?parent=60375"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}