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/lowinsrate/public_html/enroll2/footer.php
<footer class="footer mt-auto py-3 bg-light">
  <div class="container">
    <div class="row">


    <div class="col-md-6">
    <a href="/privacy.php" class="text-muted">Privacy Policy</a> |
    <a href="/terms.php" class="text-muted">Terms and Conditions</a>
  </div>

  <div class="col-md-6">
    <a href="/privacy.php" class="text-muted text-right">©Lowsinsrate 2019-2023 All Rights Reserved Powered</a>

  </div>

  </div>
  </div>

</footer>


    <script src="../assets/dist/js/bootstrap.bundle.min.js"></script>

      
    <script>
      $(document).ready(function() {
        // Initialize step and result URLs
        var step = 1;
        var yesRedirectUrl = "/enroll2/success.php";
        var noRedirectUrl = "/enroll2/offers.php";

        // Hide all questions except the first one
        $(".question").hide();
        $("#question1").show();
    
        // Handle "Yes" button click
        $(".yes").click(function() {
          // Show the next question
          $("#question" + step).hide();
          step++;
          $("#question" + step).show();
    
          // Check if all questions are answered "Yes"
          if (step === 4) {
            // Redirect to the "Yes" URL
            window.location.href = yesRedirectUrl;
          }
        });
    
        // Handle "No" button click
        $(".no").click(function() {
          // Redirect to the "No" URL
          window.location.href = noRedirectUrl;
        });
      });
    </script>


  </body>
</html>