Advertisement
angeloeboy10

codecode

Feb 19th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. if( !userNameInput.equals(txtUser) && !passwordInput.equals(txtPassword)){
  2.             Toast.makeText(this,"Username or Password doesn't match", Toast.LENGTH_SHORT).show();
  3.          }else{
  4.  
  5.              Intent intent = new Intent(Login.this, loginSuccesful.class);
  6.              startActivity(intent);
  7.  
  8.           }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement