sioux-falls-sd.testosteronepatch.org Open in urlscan Pro
2606:4700:3037::ac43:cb92  Public Scan

URL: https://sioux-falls-sd.testosteronepatch.org/
Submission: On March 11 via api from US — Scanned from US

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-68" 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-68 .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-68 .cf-email").val();
          if (!validateEmail(cf_email)) {
            $("#cf-68 .cf-email").css("border-bottom", "1px solid red");
          } else {
            $("#cf-68 .cf-email").css("border-bottom", "unset");
          }
        });
        $("#cf-68 .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-68 .cf-phone").val();
          if (!validatePhone(cf_phone)) {
            $("#cf-68 .cf-phone").css("border-bottom", "1px solid red");
          } else {
            $("#cf-68 .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@testosteronepatch.org

Hormone therapy
 * Our Blog
 * Our Services
   * Anti aging treatments
   * Men's health optimisation
   * Wellness clinic
   * Weight loss clinics
   * TRT clinic
 * Contact us

Get Free Consultation
MENU
 * Our Blog
 * Our Services +
   * Anti aging treatments
   * Men's health optimisation
   * Wellness clinic
   * Weight loss clinics
   * TRT clinic
 * Contact us +


SEMAGLUTIDE WEIGHT LOSS CLINIC SIOUX FALLS, SD


TABLE OF CONTENTS

 * Introduction to Semaglutide
 * Benefits of Semaglutide Weight Loss Treatment
 * Who is a Candidate for Semaglutide?
 * Hormone Harmony Clinic Weight Loss Protocol
 * The Hormone Harmony Clinic Difference


INTRODUCTION TO SEMAGLUTIDE

Semaglutide is an injectable prescription medication originally approved for
treating type 2 diabetes. More recently, semaglutide has also been approved by
the FDA specifically for chronic weight management in adults struggling with
obesity or being overweight.

Semaglutide works by mimicking the hormone GLP-1, which helps regulate blood
sugar levels and appetite. When used for weight loss, semaglutide helps people
feel more satisfied after eating so they eat less and lose weight.


BENEFITS OF SEMAGLUTIDE WEIGHT LOSS TREATMENT

Treatment with semaglutide as part of a comprehensive weight management plan
provides several research-backed benefits:



 * Average weight loss of 12-15% in 6-12 months
 * Improved ability to manage blood sugar levels
 * Better cholesterol levels
 * Decreased risk for obesity-related health issues
 * Increased energy and improved quality of life




OUR SERVICES


ANTI AGING TREATMENTS

Learn More


MEN'S HEALTH OPTIMISATION

Learn More


WELLNESS CLINIC

Learn More


WEIGHT LOSS CLINICS

Learn More


TRT CLINIC

Learn More


START YOUR JOURNEY TO A HEALTHIER YOU TODAY!

Get Free Consultation


WHO IS A CANDIDATE FOR SEMAGLUTIDE?

Semaglutide is appropriate for adults struggling with obesity, defined as having
a BMI over 30. It may also help people who are overweight with a BMI over 27 who
have at least one weight-related health issue such as:



 * Type 2 diabetes
 * High blood pressure
 * High cholesterol



Ideal candidates are highly motivated to make lifestyle changes to support
long-term weight management. Semaglutide works best combined with increased
physical activity, healthier eating habits, and behavior changes.


DIAGNOSING ELIGIBILITY

To determine if semaglutide is appropriate, we complete a medical evaluation
including:



 * Thorough health history
 * Physical exam
 * Discussion of weight loss goals
 * Lab testing to screen for safety issues



We also evaluate lifestyle factors to ensure patients are committed to making
needed changes.


HORMONE HARMONY CLINIC WEIGHT LOSS PROTOCOL

Our clinic's evidence-based protocol for semaglutide weight loss treatment
includes:


1. MEDICAL ASSESSMENT

We first complete a comprehensive evaluation to diagnose obesity or overweight
status, identify any contraindications, and establish health baselines.


2. SEMAGLUTIDE ADMINISTRATION

Semaglutide dosing starts low and increases gradually over 16 weeks to improve
tolerance. Patients self-administer a once-weekly injection with easy-to-use
prefilled pens.


3. LIFESTYLE MODIFICATION GUIDANCE

We provide nutritional counseling, activity planning, and behavior change
coaching to help patients modify habits. Small sustainable changes are most
effective.


4. PROGRESS EVALUATION

Patients follow up monthly to review progress, tolerate medication changes,
modify lifestyle plans as needed, and proactively address challenges.


5. MAINTENANCE PLANNING

After the initial 6-12 month treatment period, we develop maintenance plans to
support keeping weight off long-term.


THE HORMONE HARMONY CLINIC DIFFERENCE

What sets Hormone Harmony Clinic apart is our compassionate, patient-centered
approach that addresses the root causes of weight gain and empowers people to
transform their health.



 * Individualized programs tailored to each patient
 * Whole person care to support nutrition, movement, sleep, stress levels, and
   emotional health
 * Exceptional outcomes with average 12-15% weight loss for completers
 * Caring support through expert health coaching at every step



Let our experienced weight loss team help you achieve sustainable results and
radically improve your wellbeing.


TRANSFORM YOUR HEALTH WITH SEMAGLUTIDE WEIGHT LOSS TREATMENT!

Get Free Consultation


RELATED BLOG POSTS

View all blog posts


GET FREE CONSULTATION

Your Name Your Email Your Phone Your Age Send


CITIES NEAR SIOUX FALLS

 * Omaha
 * Lincoln
 * Mason City
 * West Des Moines
 * Savage
 * Duluth

Hormone therapy


LINKS

 * Terms of Service
 * Privacy policy
 * Our Glossary
 * Our Blog
 * Our Services
 * Anti aging treatments
 * Men's health optimisation
 * Wellness clinic
 * Weight loss clinics
 * TRT clinic
 * Our Locations
 * Contact us



Copyright © Hormone Harmony Clinic 2024 - All rights reserved


GET FREE CONSULTATION

Your Name Your Email Your Phone Your Age Send
Get Free Consultation