diff --git a/creation.html b/creation.html
index 6c82af96..a5282dc2 100755
--- a/creation.html
+++ b/creation.html
@@ -789,7 +789,7 @@
}
// 3. Monta a URL da API Python e inicia o download
- const apiUrl = `http://alice.ufsj.edu.br:33002/api/download/${projectName}`;
+ const apiUrl = `https://alice.ufsj.edu.br:33002/api/download/${projectName}`;
// Feedback visual rĂ¡pido
downloadBtn.style.opacity = "0.5";
@@ -847,7 +847,7 @@
uploadSampleBtn.style.pointerEvents = "none";
try {
- const response = await fetch("http://alice.ufsj.edu.br:33002/api/upload/sample", {
+ const response = await fetch("https://alice.ufsj.edu.br:33002/api/upload/sample", {
method: "POST",
body: formData
});