diff --git a/scripts/fonctions_principales.js b/scripts/fonctions_principales.js
index e30a031..a9c9b62 100644
--- a/scripts/fonctions_principales.js
+++ b/scripts/fonctions_principales.js
@@ -11,7 +11,7 @@ function weatherRequest() {
let city = json.name;
let showDateTimeValue = timeZone(json);
- $('.results').html(`🌎 Position : ${city}, ${json.sys.country}
⏰ Date et heure : ${showDateTimeValue}
☁️ Météo : ${capitalize(json.weather[0].description)}
🌡️ Température : ${json.main.temp} °C
💧 Humidité : ${json.main.humidity}%
`);
+ $('.results').html(`🌎 Position : ${city}, ${json.sys.country}
⏰ Date et heure : ${showDateTimeValue}
☁️ Météo : ${capitalize(json.weather[0].description)}
🌡️ Température : ${json.main.temp} °C
💧 Humidité : ${json.main.humidity}%
`);
}
catch(error) {
$('.results').html("La ville que vous avez rentré n'existe pas (dans l'API).");
diff --git a/views/function-views/weatherRequest.php b/views/function-views/weatherRequest.php
index eba0bb0..903c384 100644
--- a/views/function-views/weatherRequest.php
+++ b/views/function-views/weatherRequest.php
@@ -7,13 +7,16 @@
+ Pour une meilleure précision, je recommande de préciser le pays de la ville.
+ Exemple : Paris, FR
+