document.addEventListener("DOMContentLoaded", function() { | |
const form = document.getElementById('promptForm'); | |
form.addEventListener('submit', function() { | |
// Display the loading overlay when the form is submitted. | |
document.getElementById("loading").style.display = "flex"; | |
}); | |
}); | |