static void Main(string[] args)
string[] usernames = { "angel17", "cardod", "johnnys" };
string[] passwords = { "ang123", "probin", "ph" };
Console.Write("Enter the username: ");
string uname = Console.ReadLine();
if (usernames.Equals(usernames))
Console.WriteLine("You have successfully logged in.");
Console.WriteLine("Invalid username and/or password.");
Console.WriteLine("Come back tomorrow.");
} while ( !success || attempt <= 3);