Advertisement
Guest User

coding_login

a guest
Oct 30th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. if (username.getText().equals("ani")){
  2.        if(pass.getText().equals("ani")){
  3.            new PenjualanKu().show();
  4.            this.dispose();
  5.        }else {
  6.            JOptionPane.showMessageDialog(rootPane, "Password salah");
  7.            pass.setText("");
  8.            pass.requestFocus();
  9.        }
  10.        
  11.    }else {
  12.        JOptionPane.showMessageDialog(rootPane, "Username Salah");
  13.        username.setText("");
  14.        pass.setText("");
  15.            username.requestFocus();
  16.    }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement