private void btn_valIdentification_Click(object sender, EventArgs e) { //string nom; //nom = Models.DataBase.TestConnexion(); //MessageBox.Show(nom); string identifiant; string mdp; User user; identifiant = textBox_Identifiant.Text; mdp = textBox_pwd.Text; if (identifiant != "" && mdp != "") { user = Authentification.AuthentificationApp(identifiant, mdp); if (user != null) { // Session sessionUser.loadUser(user); FormAccueil f1 = new FormAccueil(); this.Hide(); f1.ShowDialog(); this.Show(); } else { MessageBox.Show("Erreur d'identifiant / Mot de passe"); } } else { MessageBox.Show("Merci de renseigner tous les champs"); } }