login_but.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e){
//System.out.print(F_user.getText());
String username = F_user.getText();
String password = F_pass.getText();
//System.out.print(password);
if(username.equals(""))
{
JOptionPane.showMessageDialog(null,"Please enter username");
}
}
}
);