public class Login extends JFrame {
    private JPanel panel1;
    private JButton btnLogin;
    private JTextField txtEmail;
    private JPasswordField txtPassword;
    public static Users users;
    public Login(){
        initComponent();
    }
private void initComponent(){
        setContentPane(panel1); //here is the problema, Why?
        setSize(600,400);
        setDefaultCloseOperation(3);
        setLocationRelativeTo(null);
    }
![The image is on the link :(][1] [1]: https://i.stack.imgur.com/ar5u8.jpg
