diff --git a/js/ens.js b/js/ens.js index 5934c88..0f889af 100644 --- a/js/ens.js +++ b/js/ens.js @@ -83,7 +83,7 @@ async function gen_contenu() { previewCell = document.createElement('td'); const pdfLink = document.createElement('a'); pdfLink.href = doc.upload_path; - pdfLink.textContent = 'View PDF'; + pdfLink.textContent = 'Voir PDF'; pdfLink.target = '_blank'; previewCell.appendChild(pdfLink); break; diff --git a/js/index.js b/js/index.js index 9e0f80d..576a4fa 100644 --- a/js/index.js +++ b/js/index.js @@ -8,7 +8,6 @@ async function test_auth(){ async function authenticate_user(){ resp = await fetch("api.php/auth"); data = await resp.json(); - console.log("test"); if(data.status == 1){ document.getElementById("user_status").innerText = data["msg"]; }