Guest User

Untitled

a guest
Mar 2nd, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. private void handleSignInButtonAction(ActionEvent event) throws Exception{
  2.         mainGridPane.setOpacity(0.5);
  3.  
  4.         //this should display a progress spinner before database connection
  5.         spinnerAnchorPane.setVisible(true);
  6.  
  7.         String username = userNameField.getText().trim();
  8.         String password = passwordField.getText();
  9.  
  10.         //database connection here
  11.         int status = loginService.authenticateLogin(username, password);
  12. }
Add Comment
Please, Sign In to add comment