The paths for the Bootstrap CSS and JS files have been included in the code, but unfortunately, they are not working. Instead, I am getting the following errors in the console:
- GET http://127.0.0.1:5000/[https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css] net::ERR_ABORTED 404 (NOT FOUND)
- GET http://127.0.0.1:5000/[https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js] net::ERR_ABORTED 404 (NOT FOUND)
Below is a snippet of the code where the path is specified:
<script src="C:\Users\DELL\Desktop\CS50X\project\static\bootstrapjs/bootstrap.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
I even tried using CDNs, but encountered similar error messages. Additionally, I attempted to use links provided in the documentation without success.