Advertisement
Guest User

Untitled

a guest
May 12th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.39 KB | None | 0 0
  1. TextWindow.BackgroundColor = "Yellow"
  2. TextWindow.ForegroundColor = "Blue"
  3. TextWindow.Clear()
  4. TextWindow.Write("Enter Username: ")
  5. Username = TextWindow.Read()
  6. TextWindow.Write("Enter Password: ")
  7. Password = TextWindow.Read()
  8. If Username = "joakim" And Password = "toalet" Then
  9.     TextWindow.WriteLine("Accses Granted")
  10. Else
  11.     TextWindow.Clear()
  12.     TextWindow.WriteLine("Accses Denied: ")
  13. EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement