From 6eb34c57c3296cc5c5495e48e227c1ef355751e6 Mon Sep 17 00:00:00 2001 From: HMatheo Date: Sat, 13 May 2023 15:17:25 +0200 Subject: [PATCH] drone test --- MangaMap/Views/loginPage.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MangaMap/Views/loginPage.xaml.cs b/MangaMap/Views/loginPage.xaml.cs index 8343627..8ab881b 100644 --- a/MangaMap/Views/loginPage.xaml.cs +++ b/MangaMap/Views/loginPage.xaml.cs @@ -32,11 +32,11 @@ public partial class loginPage : ContentPage // Vérification du mot de passe if (password != "monmotdepasse") { - DisplayAlert("Erreur", "Le mot de passe entré est incorrect.", "OK"); + await DisplayAlert("Erreur", "Le mot de passe entré est incorrect.", "OK"); return; } // Redirection vers la page suivante si le mot de passe est correct - Navigation.PushAsync(new homePage()); + await Navigation.PushAsync(new homePage()); } }