using Model; using System.Windows.Input; namespace IHM.Mobile { public partial class MainPage : ContentPage { public Manager Mgr => (App.Current as App).Manager; public MainPage() { InitializeComponent(); //BindingContext = this; } public void ConnectionOnClicked(object sender, EventArgs e) { if (EntryMail.Text == null || EntryPassworld.Text == null) { AffichError("Champ invalide", "Veuillez compléter tout les champs", "OK"); } else { if (Mgr.Pers.EmailDisponible(EntryMail.Text)) { if (Mgr.CompareHash(Mgr.getPassword(EntryMail.Text), EntryPassworld.Text)) { Mgr.createUser(EntryMail.Text); ConnexionValide(); } else { AffichError("Mot de passe non valide", "Le mot de passe ne correspond pas à celui existant pout cette adresse mail", "OK"); } } else { AffichError("Compte inexistant", "Email ou mot de passe invalide", "OK"); } } } private async void ConnexionValide() { Mgr.LoadBanques(); await Navigation.PopModalAsync(); } private async void AffichError(string s, string s1, string s2) { await DisplayAlert(s, s1, s2); } protected override bool OnBackButtonPressed() { return true; } public ICommand TapCommand => new Command(async (page) => await Shell.Current.GoToAsync(page)); } }