LORDCHICKEN

Untitled

Sep 10th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. FirebaseResponse response = firebaseClient.Get(@"Users/" + UText.Text);
  2. Data RegUser = response.ResultAs<Data>();
  3. Data CurUser = new Data()
  4. {
  5. Username = UText.Text,
  6. Password = PText.Text
  7. };
  8.  
  9. bool DidReset = false;
  10.  
  11. if (Data.IsEqual(RegUser, CurUser))
  12. {
  13. MessageBox.Show("Logged in");
  14. Environment.Exit(1);
  15. }
  16. else
  17. {
  18.  
  19. }
Add Comment
Please, Sign In to add comment