CheckPw$

Takes two parameters, User and Password

Description:

The CheckPw$ text Function, and the equivalent function for the Text command, accept any one of the following in the User parameter:

If the User and password are a match, it will return the table name of the user found and the alias of that user in the format of Table.Name|Alias. It it is not a match, it will return false (blank).

Examples:
    IsCorrectPw = CheckPw$ User, Pw
    OR
    Text "IsCorrectPW", "CheckPw", "User", "Pw"

Notes: Like the login system itself, this command has a random built-in delay of between 0 and 10 seconds if the password is incorrect; this helps mitigate some brute force attacks.