From ba7e7c4b9b726023c22ec529e7e3f2be1073cc16 Mon Sep 17 00:00:00 2001 From: "emile.malcuit" Date: Wed, 12 Mar 2025 11:38:47 +0100 Subject: [PATCH] hello --- GSBapplication/src/presentation/jffConnexion.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GSBapplication/src/presentation/jffConnexion.java b/GSBapplication/src/presentation/jffConnexion.java index 674a3ed..95db4b1 100644 --- a/GSBapplication/src/presentation/jffConnexion.java +++ b/GSBapplication/src/presentation/jffConnexion.java @@ -154,8 +154,11 @@ public class jffConnexion extends javax.swing.JFrame { private void jBValiderActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBValiderActionPerformed String identifiant = "DIDIER"; + String motPasse = "123"; - if (jTFIdentifiant.getText() == identifiant){} + if (jTFIdentifiant.getText().equals(identifiant) && jPFmdp.getText().equals(motPasse)){ + System.out.println("Gagner"); + } }//GEN-LAST:event_jBValiderActionPerformed /** -- 2.47.2