hrt.guru
Open in
urlscan Pro
2606:4700:3035::6815:1704
Public Scan
Submitted URL: https://www.hrt.guru/
Effective URL: https://hrt.guru/
Submission: On April 23 via api from US — Scanned from DE
Effective URL: https://hrt.guru/
Submission: On April 23 via api from US — Scanned from DE
Form analysis
1 forms found in the DOM<form id="form" class="white-popup-block mfp-hide">
<div class="popup_box ">
<div class="popup_inner">
<style>
.header-mobile .nav-links {
display: none;
}
.header-mobile input[type=checkbox]:checked~.nav-links {
display: block !important;
}
/*.cf .cf-input:hover {
opacity: 0.7;
}
.cf .cf-input:focus {
opacity: 1;
outline: none;
border: 1px solid #ccc;
}*/
.cf .cf-button:hover {
background-color: transparent;
color: #0c75fb
}
.cf {
margin: 0 auto !important;
max-width: 400px;
background-color: rgba(255, 255, 255, .5);
border-radius: 25px;
padding: 25px;
}
/* .cf p {
margin: 0;
}
.cf .cf-title {
font-size: 27px;
margin: 0 0 15px;
color: #0c75fb;
font-weight: 700;
}
.cf .cf-input {
transition: .3s;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px 15px;
width: 100%;
margin-bottom: 15px;
box-sizing: border-box;
}*/
.cf .cf-button {
transition: .3s;
background-color: #0c75fb;
color: #fff;
padding: 10px 15px;
border: 1px solid #1261c4;
border-radius: 15px;
cursor: pointer;
}
.cf label {
margin-bottom: 25px;
position: relative;
display: block;
border-bottom: 1px solid #ddd;
width: 100%;
margin-top: 25px;
}
.cf input {
width: 100%;
box-sizing: border-box;
padding: 10px 15px;
border: none;
outline: none;
line-height: 16px;
margin: 0;
background-color: transparent;
}
.cf input::placeholder {
opacity: 0;
}
.cf span {
position: absolute;
top: 0;
left: 15px;
transform: translateY(10px);
font-size: 16px;
color: #000;
transition-duration: 300ms;
cursor: text;
}
.cf label:focus-within>span,
.cf input:not(:placeholder-shown)+span {
color: #000;
transform: translateY(-15px);
font-weight: 500;
}
</style>
<div id="cf-71" class="cf">
<h2 class="cf-title">Get Free Consultation</h2>
<label>
<input type="text" id="cf-name" class="cf-name" placeholder="
Your Name">
<span>Your Name</span>
</label>
<label>
<input type="email" id="cf-email" class="cf-email" placeholder="
Your Email">
<span>Your Email</span>
</label>
<label>
<input type="text" id="cf-phone" inputmode="decimal" class="cf-phone" placeholder="Your Phone">
<span>Your Phone</span>
</label>
<label>
<input type="number" id="cf-age" pattern="[0-9]*" inputmode="decimal" class="cf-age" maxlength="3" placeholder="Your Age">
<span>Your Age</span>
</label>
<button onclick="if (!window.__cfRLUnblockHandlers) return false; cfSend($(this).parent().attr('id'));" class="cf-button" type="button">Send</button>
</div>
<script src="/import1/assets/jquery-3.4.1-dist/js/jquery-3.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$("#cf-71 .cf-email").blur(function() {
const validateEmail = (email) => {
return String(email).toLowerCase().match(/^(([^<>()[\]\.,;:\s@"]+(\.[^<>()[\]\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/);
};
let cf_email = $("#cf-71 .cf-email").val();
if (!validateEmail(cf_email)) {
$("#cf-71 .cf-email").css("border-bottom", "1px solid red");
} else {
$("#cf-71 .cf-email").css("border-bottom", "unset");
}
});
$("#cf-71 .cf-phone").blur(function() {
const validatePhone = (phone) => {
phone = phone.replace(/[^0-9]/g, "");
if (phone.length >= 10 && phone[0] != "1") {
return true;
} else {
if (phone[0] == "1" && phone.length >= 11) {
return true;
} else {
return false;
}
}
/*return true;
return String(phone).toLowerCase().match(
/^[\+]?[(]?[0-9]{3}[)]?[-\s\.]?[0-9]{3}[-\s\.]?[0-9]{4,6}$/
);*/
};
let cf_phone = $("#cf-71 .cf-phone").val();
if (!validatePhone(cf_phone)) {
$("#cf-71 .cf-phone").css("border-bottom", "1px solid red");
} else {
$("#cf-71 .cf-phone").css("border-bottom", "unset");
}
});
function cfSend(idForm) {
let cf_name = $("#" + idForm + " .cf-name").val();
let cf_phone = $("#" + idForm + " .cf-phone").val();
let cf_email = $("#" + idForm + " .cf-email").val();
let cf_age = $("#" + idForm + " .cf-age").val();
let cf_message = $("#" + idForm + " .cf-message").val();
const validateEmail = (email) => {
return String(email).toLowerCase().match(/^(([^<>()[\]\.,;:\s@"]+(\.[^<>()[\]\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/);
};
const validatePhone = (phone) => {
phone = phone.replace(/[^0-9]/g, "");
if (phone.length >= 10 && phone[0] != "1") {
return true;
} else {
if (phone[0] == "1" && phone.length >= 11) {
return true;
} else {
return false;
}
}
};
if (!cf_name) {
$("#" + idForm + " .cf-name").css("border-bottom", "1px solid red");
}
if (!cf_phone) {
$("#" + idForm + " .cf-phone").css("border-bottom", "1px solid red");
}
if (!cf_email) {
$("#" + idForm + " .cf-email").css("border-bottom", "1px solid red");
}
if (!cf_age) {
$("#" + idForm + " .cf-age").css("border-bottom", "1px solid red");
}
if (!cf_message) {
$("#" + idForm + " .cf-message").css("border-bottom", "1px solid red");
}
if (!validateEmail(cf_email)) {
$("#" + idForm + " .cf-email").css("border-bottom", "1px solid red");
}
if (!validatePhone(cf_phone)) {
$("#" + idForm + " .cf-phone").css("border-bottom", "1px solid red");
}
if (!cf_name || !validatePhone(cf_phone) || !cf_email || !cf_age || !validateEmail(cf_email)) {
$("html, body").animate({
scrollTop: $("#" + idForm).offset().top
}, 2000);
} else {
$.post("/", {
cf_name: cf_name,
cf_phone: cf_phone,
cf_email: cf_email,
cf_age: cf_age,
cf_message: cf_message
}).done(function() {
$("#" + idForm).html(" <h2>Thank you\n" + " </h2> \n" + " <p>\n" +
" We received your initial inquiry. In keeping with our Privacy Policy, your information will be held in the strictest confidence. No one will ever see this information except our local doctors and their assistants.\n" +
" </p>");
}).fail(function() {
alert("error");
});
}
}
</script>
</div>
</div>
</form>
Text Content
* info@hrt.guru Hormone therapy * Our Services * Menopause treatment * Bio identical Hormone therapy * Peptide injections * HGH injections * Testosterone treatments * Hormone therapy * Contact us Get Free Consultation MENU * Our Services + * Menopause treatment * Bio identical Hormone therapy * Peptide injections * HGH injections * Testosterone treatments * Hormone therapy * Contact us + HORMONE THERAPY - REJUVENATE HORMONE THERAPY Hormone therapy is an innovative way to restore balance and promote overall wellness. Over 25 million people suffer from chronic hormone imbalance, leading to issues like low energy, diminished mental clarity, unstable moods, and reduced vitality. Rejuvenate Hormone Therapy provides safe, personalized solutions to optimize hormone levels using cutting-edge protocols, superior patient support, and a commitment to helping you reclaim health. CAUSES AND SYMPTOMS OF HORMONE IMBALANCE Failure to properly regulate key hormones can stem from myriad factors like aging, chronic stress, and lifestyle choices. Common deficiency signs include: Physical Symptoms Emotional Symptoms Lackluster libido Depression or anxiety Erectile dysfunction Persistent fatigue Weight gain and reduced muscle mass Poor sleep quality Loss of enjoyment in life Timely testing and treatment are crucial - prolonged imbalance can negatively impact nearly every bodily system. The compassionate practitioners at Rejuvenate Hormone Therapy utilize advanced diagnostic tools to uncover the root causes of dysfunction. OUR SERVICES MENOPAUSE TREATMENT Learn More BIO IDENTICAL HORMONE THERAPY Learn More PEPTIDE INJECTIONS Learn More HGH INJECTIONS Learn More TESTOSTERONE TREATMENTS Learn More HORMONE THERAPY Learn More DIVERSE TREATMENT OPTIONS Whether you want to feel more energetic, sharper, or sexually vibrant, Rejuvenate Hormone Therapy customizes regimens utilizing: BIOIDENTICAL HORMONES Molecularly identical to what your body produces, these sustain levels safely and naturally. Available as pills, creams, gels, pellets, patches, and more. PEPTIDES Short protein chains that prompt your system to release specific hormones as needed. Convenient self-injected options. NUTRACEUTICALS Specially-formulated supplements that provide concentrated nourishment to glands. Help optimize production and absorption. RECLAIM YOUR HEALTH AND VITALITY. Get Free Consultation LIFESTYLE AND WELLNESS RECOMMENDATIONS For optimal results, the clinic advises: * Adequate high-quality sleep * Regular exercise * Stress-management techniques * Nutrient-dense whole foods * Possible medication adjustments An integrative approach addresses the interconnection between mind, body, and spirit for full restoration. INNOVATIONS IN HORMONE OPTIMIZATION Rejuvenate Hormone Therapy stays at the forefront of this rapidly advancing field to provide the safest, most effective care. Recent innovations include: Innovation Description Enhanced Bioavailability Sustained-release medications, sublinguals, and liposomal technology for better absorption. Cellular Rejuvenation Cutting-edge peptides and growth factors energize cells, stimulate collagen, and slow aging. Genetic Testing Identifying individual biochemical uniqueness enables more precise interventions for superior outcomes. Telemedicine Convenient virtual visits, personalized treatment plans, at-home testing kits, and free shipping on medications. WHY CHOOSE REJUVENATE HORMONE THERAPY? With holistic protocols centered around care and compassion, Rejuvenate Hormone Therapy strives to help clients resolve dysfunction, restore balance, and reclaim vibrancy across all life domains. They: * Spend extensive one-on-one time understanding health history and objectives * Order appropriate testing for accurate diagnoses * Provide fully personalized care integrating both traditional and innovative modalities as clinically indicated * Offer supportive resources and community referrals * Are leaders in therapeutic education and training * Remain dedicated to ongoing optimization and wellness for the long term TAKE CONTROL OF YOUR HEALTH AND RESTORE BALANCE TODAY. Get Free Consultation CONCLUSION Don't settle for suboptimal living any longer! Reach out to Rejuvenate Hormone Therapy today to start your journey towards hormone health and true thriving. OTHER LOCATIONS * Langley * Palmetto * Trumbull County * Lucas County * Prince William County * Forsyth County Hormone therapy LINKS * Our Glossary * Our Locations * Privacy policy * Our Services * Menopause treatment * Bio identical Hormone therapy * Peptide injections * HGH injections * Testosterone treatments * Hormone therapy * Contact us * Terms of Service Copyright © Rejuvenate Hormone Therapy 2024 - All rights reserved GET FREE CONSULTATION Your Name Your Email Your Phone Your Age Send Get Free Consultation