diff --git a/auth/login.php b/auth/login.php index aa6ef5b..91e3b0a 100644 --- a/auth/login.php +++ b/auth/login.php @@ -16,10 +16,10 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { header('Location: ../index.php'); exit; } else { - $error = "Invalid email or password."; + $error = "Email ou mot de passe invalide."; } } else { - $error = "Please fill all fields."; + $error = "Veuillez remplir tous les champs."; } } ?> @@ -27,7 +27,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
-