bs4-scripts.html 485 Bytes
  <script src="{{ url_for('static', filename='js/jquery-3.6.0.min.js') }}" type="text/javascript"></script>
  <script src="{{ url_for('static', filename='js/bootstrap.bundle.min.js') }}" type="text/javascript"></script>
  <script>
    $(function () {
        $('[data-toggle="tooltip"]').tooltip()
    });

    // Set the bootstrap layout for forms
    $(".pdc-form").addClass("col-12 col-md-10 col-lg-8 col-xl-6")
    $(".pdc-form-submit").addClass("btn btn-dark col-12")
  </script>