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/healthinsuranceapproval/public_html/footer.php
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<p style="font-size: 14px; color: #ced1d5 !important;">HealthInsuranceApproval.com plans provided by Drew Cohen.</p>
</div>
</div>
</div>

  <!-- /.content-wrapper -->
  <footer class="bg-navy text-inverse text-center">

    

<div class="container pt-4">

      <!--/div -->
      <div class="row gy-6 gy-lg-0">
        <div class="col-md-12 col-lg-12">
          <div class="widget">
            
            <p class="mb-4">©Health Insurance Approval 2019-2021 All Rights Reserved. <a href="/privacy.php"> Privacy Policy </a> | <a href="/terms.php">Terms of Service </a></p>

            <!-- /.social -->
          </div>
          <!-- /.widget -->
        </div>
        <!-- /column -->


        <!-- /column -->
      </div>
      <!--/.row -->
    </div>
    <!-- /.container -->
  </footer>


  <div class="progress-wrap">
    <svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
      <path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
    </svg>
  </div>
  <script src="./assets/js/plugins.js"></script>
  <script src="./assets/js/theme.js"></script>
</body>

</html>

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D05XGCGSRF"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-D05XGCGSRF');
</script>

<!-- Global site tag (gtag.js) - Google Ads: 867661804 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-867661804"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'AW-867661804');
</script>

<script>
  gtag('config', 'AW-867661804/TxnmCMzd_mwQ7O_dnQM', {
    'phone_conversion_number': '(855) 805-6712'
  });
</script>

<script>
  dataLayer.push({
    'event':'ec_formsubmit',
    'enhanced_conversion_data': {
      "email": 'yourEmailVariable',   
      "phone": 'yourPhoneVariable',
      "firstname": 'yourFirstNameVariable',
      "lastname": 'yourLastNameVariable',
      "street": 'yourStreetAddressVariable',
      "city": 'yourCityVariable',
      "region": 'yourRegionVariable',
      "zip": 'yourPostalCodeVariable',
      "country": 'yourCountryVariable'
    }
  })
</script>


<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>