HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/nationalmedicaregrp/public_html/backup/partners.php
<?php include 'header.php';?>




<body>


    <section class="wrapper bg-gradient-primary" style="padding: 100px 0 100px 0">
      <div class="container">
        <div class="row">
          <div class="col-lg-12">



            <h2 style="margin-bottom: 50px !important;" class="text-center">Marketing Partners</h2>


            <div class="row">
        <div class="col-6 text-center">

<li>Affordable Health Group</li>
<li>Alliance National Health</li>
<li>Alternative Alpha Health, LLC.</li>
<li>America's Health Center, Inc.</li>
<li>America's Health Providers</li>
<li>Cypress Bend Marketing </li>
<li>Fuego Leads, LLC.</li>
<li>Genesis Marketing Group</li>
<li>Get Me Healthcare</li>
<li>Get Me Medicare</li>
<li>H&M Advisors</li>
<li>HIC Marketing Group, LLC.</li>
<li>Health and Medicare Advisors</li>
<li>Medicare Benefits Direct</li>
<li>National Health Agents</li>
<li>National Health Plans, LLC.</li>
<li>SolidQuote, LLC.</li>

</div>

<div class="col-6 text-center">
<li>New Age Health</li>
<li>Precision Healthcare Providers</li>
<li>Precision Insurance Providers, LLC.</li>
<li>Premier Health Associates</li>
<li>Quotehound, Inc.</li>
<li>Reasonable Health Coverage</li>
<li>Reasonable Insurance Group </li>
<li>Reasonable Insurance Group</li>
<li>Seniors Get Benefits</li>
<li>Tobias and Associates</li>
<li>Trusted Health Associates</li>
<li>Trusted Healthcare Providers, LLC.</li>
<li>  Affordable Healthcare Assoicates, LLC. </li>
  <li>  Allied Health Insurance Agency, LLC. </li>
  <li>  Direct Insurance Providers, LLC.</li>
  <li> New Age Health Solutions</li>
  <li>QuoteManage, LLC.</li>

</div>


<div class="col-12 pt-20 text-center">

<a href="/"><button type="Get Quotes" id="Get QuotesButton" class="main-btn"><i class="fas fa-lock"></i> Contact Us</button>
</a>


</div>

      </div>

                </div>
            </div>
            

          
              

            

    </section>



    
  
  </div>




     <!--====== Start Footer ======-->
     <footer class="footer-area">
            <div class="footer-wrapper-one dark-black">
               
                <div class="copyright-area">
                    <div class="container">
                        <div class="row align-items-center">
                            <div class="col-lg-6">
                                <div class="copyright-text">

                                    <p>© Allied Healthcare Associates 2022 | All Rights Reserved.</p>
                                </div>
                            </div>
                            <div class="col-lg-6">
                                <div class="copyright-link">
                                    <ul>
                                        <li><a href="/privacy.php">Privacy Policy</a></li>
                                        <li><a href="/terms.php">Terms & Conditins</a></li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </footer><!--====== End Footer ======-->


 
  <script src="./assets/js/plugins.js"></script>
  <script src="./assets/js/theme.js"></script>
</body>

</html>



<script>


$("#errorZip").css({"color": "#ef0303", "background-color": "#ffe9e9", "font-size": "22px","font-weight": "600", "padding": "0 14px 0 14px", "margin-top": "5px"});



</script>


<script>


/* FORM FIELD FUNCTIONS */

$(document)
          .on('keydown', '.alpha', function(e) {
              var a = e.key;
              if (a.length == 1) return /[a-z]|\$|#|\*/i.test(a);
              return true;
          })


          $(document)
          .on('keydown', '.numer', function(e) {
              var a = e.key;
              if (a.length == 1) return /[0-9]|\$|#|\*/i.test(a);
              return true;
          })

      // now the digit 0 on your mask pattern will be interpreted
      // as valid characters like 0,1,2,3,4,5,6,7,8,9 and *
      

</script>



<script>


/*-----------------------------------------------------------------------*/
   /*---------------------------- jQuery Validation ------------------------*/
   /*-----------------------------------------------------------------------*/
   
   
   
           /* ZIPCODE */
   
   
           $('#zipCode').on("input", function() {
               var zipCode = $('#zipCode').val();
               if (zipCode.length == 5) {
                   $.ajax({
                       type: 'GET',
                       url: 'https://ziplookup.visualyzers.com/Ziplookup?zipcode=' + zipCode,
                       success: function(results) {
                           if (!results) {
                               $('#errorZip').show();
                               $('#submitButton').prop("disabled", true);
                           } else {
                               $('#city').val(results.city);
                               $('#state').val(results.state);
                               $('#errorZip').hide();
                               $('#submitButton').prop("disabled", false);
                           }
   
                       }
                   })
               }
           });
   
   
           var form = $("#valForm");
        form.validate({
            errorPlacement: function errorPlacement(error, element) {
                element.before(error);
            },
            rules: {

                zipCode: {
                    required: true,
                    minlength: 5,
                    maxlength: 5
                }
            },

            messages: {
                zipCode: {
                    required:"Please enter a valid Zip Code"
                }

            },

        });
        
 /*-----------------------------------------------------------------------*/
/*---------------------------- jQuery Validation ------------------------*/
/*-----------------------------------------------------------------------*/


        

        $('#zipCode2').on("input", function() {
               var zipCode = $('#zipCode2').val();
               if (zipCode.length == 5) {
                   $.ajax({
                       type: 'GET',
                       url: 'https://ziplookup.visualyzers.com/Ziplookup?zipcode=' + zipCode,
                       success: function(results) {
                           if (!results) {
                               $('#errorZip').show();
                               $('#submitButton').prop("disabled", true);
                           } else {
                               $('#city2').val(results.city);
                               $('#state2').val(results.state);
                               $('#errorZip').hide();
                               $('#submitButton').prop("disabled", false);
                           }
   
                       }
                   })
               }
           });
   
   



        var form = $("#valForm2");
        form.validate({
            errorPlacement: function errorPlacement(error, element) {
                element.before(error);
            },
            rules: {

                zipCode: {
                    required: true,
                    minlength: 5,
                    maxlength: 5
                }
            },

            messages: {
                zipCode: {
                    required:"Please enter a valid Zip Code"
                }

            },

        });

    

    </script>