Exemple #1
0
            #Folder doesn't exist
            console.outs([-3, 0])


#console.cls() #Clear the screen

#First load settings
GetSettings()

#Verify SFFPSL

console.outs([6, 0])
time.sleep(0.3)

#First check if user account exists
fileFound = FileHandler.DoesAccountExist()
if (not fileFound):
    #Create user account since it doesn't exist
    try:
        CreateAccount()
        console.out(17)  #Success, account created
    except Exception:
        console.out(18)  #Failure
        raise

#Now get the user to log in to their account
credentialPass = False

validationKey = Encryptor.GenerateSALT()
while (not credentialPass):
    verification = VerifyUser()