def noUsername(self): # must be minimum of five characters promptWindow("Error", "No username was entered")
def maxUsers(self): #double check about this# promptWindow("Error", "Maximum of 10 users are already registered")
def shortPassword(self): # must be minimum of five characters promptWindow("Error", "Password must be at least 5 characters")
def successfulRegistration(self): promptWindow("Success", "Registration Successful. \n Redirecting to Login")
def repeatUser(self): #user already exists promptWindow("Error", "An account with this username already exists")
def differentPassword(self): #passwords don't match when registering promptWindow("Error", "Passwords do not match, please try again")
def wrongPassword(self): #password typed incorrectly promptWindow("Error", "Incorrect password, please try again")
def wrongUser(self): #user does not exist promptWindow("Error", "User does not exist, please try again or register as a new user")