{"id":2523,"date":"2026-04-03T13:59:39","date_gmt":"2026-04-03T13:59:39","guid":{"rendered":"https:\/\/staging5.symphony-solution.com\/selfseawp\/?page_id=2523"},"modified":"2026-04-16T10:15:07","modified_gmt":"2026-04-16T10:15:07","slug":"trouble-login","status":"publish","type":"page","link":"https:\/\/staging5.symphony-solution.com\/selfseawp\/trouble-login\/","title":{"rendered":"trouble-login"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2523\" class=\"elementor elementor-2523\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4af5273 e-con-full e-flex e-con e-parent\" data-id=\"4af5273\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-792ab0a e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"792ab0a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-87f1773 e-con-full e-flex e-con e-child\" data-id=\"87f1773\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-049fba6 e-con-full e-flex e-con e-child\" data-id=\"049fba6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7cfacf9 e-con-full e-flex e-con e-child\" data-id=\"7cfacf9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d286a7f elementor-widget elementor-widget-heading\" data-id=\"d286a7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">trouble logging in?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d2dac9c elementor-widget elementor-widget-text-editor\" data-id=\"d2dac9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>enter your email or username and\u00a0we&#8217;ll\u00a0send you a link to get back into your account.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-109f7d6 elementor-widget elementor-widget-form\" data-id=\"109f7d6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\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-ccd26a2 elementor-widget elementor-widget-html\" data-id=\"ccd26a2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n.elementor-field-group .elementor-error {\n  display: none !important;\n}\n.elementor-message-danger {\n  display: none !important;\n}\n.elementor-message:before {\n  display: none !important;\n}\n\n.custom-field-error {\n  display: none;\n  color: #ef4b3f;\n  font-size: 14px;\n  margin-top: 6px;\n}\n\n.elementor-field-group.has-error input {\n  border-color: #ef4b3f !important;\n}\n\n\/* Default (active button) *\/\nbutton[type=\"submit\"] {\n  background-color: #b6e35a; \/* green *\/\n  color: #000;\n}\n\n\/* Disabled state *\/\nbutton[type=\"submit\"]:disabled,\nbutton[type=\"submit\"].custom-disabled {\n  background-color: #d3d3d3 !important; \/* gray *\/\n  color: #888 !important;\n  border-color: #d3d3d3 !important;\n  cursor: not-allowed;\n  opacity: 1 !important; \/* Elementor opacity override *\/\n}\n<\/style>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  const form = document.querySelector(\".elementor-form\");\n  if (!form) return;\n\n  form.setAttribute(\"novalidate\", \"novalidate\");\n\n  const emailField =\n    form.querySelector(\"[name='user_login']\") ||\n    form.querySelector(\"[name='form_fields[email]']\") ||\n    form.querySelector(\"input[type='text']\");\n\n  const submitBtn = form.querySelector(\"button[type='submit']\");\n  if (!emailField || !submitBtn) return;\n\n  const emailGroup = emailField.closest(\".elementor-field-group\");\n\n  function createErrorEl(group) {\n    let el = group.querySelector(\".custom-field-error\");\n    if (!el) {\n      el = document.createElement(\"div\");\n      el.className = \"custom-field-error\";\n      group.appendChild(el);\n    }\n    return el;\n  }\n\n  const emailError = createErrorEl(emailGroup);\n\n  function showError(message) {\n    emailGroup.classList.add(\"has-error\");\n    emailError.innerText = message;\n    emailError.style.display = \"block\";\n  }\n\n  function hideError() {\n    emailGroup.classList.remove(\"has-error\");\n    emailError.innerText = \"\";\n    emailError.style.display = \"none\";\n  }\n\n  function disableBtn() {\n    submitBtn.disabled = true;\n    submitBtn.classList.add(\"custom-disabled\");\n  }\n\n  function enableBtn() {\n    submitBtn.disabled = false;\n    submitBtn.classList.remove(\"custom-disabled\");\n  }\n\n  function isValidEmail(email) {\n    return \/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$\/.test(email);\n  }\n\n  function validate() {\n    const value = emailField.value.trim();\n\n    if (!value) {\n      showError(\"please enter a valid email or username\");\n      disableBtn();\n      return false;\n    }\n\n    if (value.includes(\"@\") && !isValidEmail(value)) {\n      showError(\"please enter a valid email or username\");\n      disableBtn();\n      return false;\n    }\n\n    hideError();\n    enableBtn();\n    return true;\n  }\n\n  emailField.addEventListener(\"input\", function () {\n    const value = emailField.value.trim();\n\n    if (value) {\n      hideError();\n      enableBtn();\n    } else {\n      hideError();\n      enableBtn(); \/\/ page load and empty state par active rahe\n    }\n  });\n\n  form.addEventListener(\"submit\", function (e) {\n    e.preventDefault();\n\n    if (!validate()) return;\n\n    form.submit();\n  });\n});\n<\/script>\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<div class=\"elementor-element elementor-element-7007df2 e-con-full elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"7007df2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"likebtn_container\" style=\"\"><!-- LikeBtn.com BEGIN --><span class=\"likebtn-wrapper\"  data-identifier=\"page_2523\"  data-site_id=\"69cae70cfa8fdf484b53ce90\"  data-style=\"\"  data-unlike_allowed=\"\"  data-show_copyright=\"\"  data-item_url=\"https:\/\/staging5.symphony-solution.com\/selfseawp\/trouble-login\/\"  data-item_title=\"trouble-login\"  data-item_date=\"2026-04-03T13:59:39+00:00\"  data-engine=\"WordPress\"  data-plugin_v=\"2.6.59\"  data-prx=\"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-admin\/admin-ajax.php?action=likebtn_prx\"  data-event_handler=\"likebtn_eh\" ><\/span><!-- LikeBtn.com END --><\/div>","protected":false},"excerpt":{"rendered":"<p>trouble logging in? enter your email or username and\u00a0we&#8217;ll\u00a0send you a link to get back into your account.<\/p>\n<div class=\"likebtn_container\" style=\"\"><!-- LikeBtn.com BEGIN --><span class=\"likebtn-wrapper\"  data-identifier=\"page_2523\"  data-site_id=\"69cae70cfa8fdf484b53ce90\"  data-style=\"\"  data-unlike_allowed=\"\"  data-show_copyright=\"\"  data-item_url=\"https:\/\/staging5.symphony-solution.com\/selfseawp\/trouble-login\/\"  data-item_title=\"trouble-login\"  data-item_date=\"2026-04-03T13:59:39+00:00\"  data-engine=\"WordPress\"  data-plugin_v=\"2.6.59\"  data-prx=\"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-admin\/admin-ajax.php?action=likebtn_prx\"  data-event_handler=\"likebtn_eh\" ><\/span><!-- LikeBtn.com END --><\/div>","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_angie_page":false,"footnotes":""},"class_list":["post-2523","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/pages\/2523","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/comments?post=2523"}],"version-history":[{"count":43,"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/pages\/2523\/revisions"}],"predecessor-version":[{"id":6097,"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/pages\/2523\/revisions\/6097"}],"wp:attachment":[{"href":"https:\/\/staging5.symphony-solution.com\/selfseawp\/wp-json\/wp\/v2\/media?parent=2523"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}