public static void Main()
Console.Write("Please enter your new username: ");
Console.Write("Please enter your new password (6 characters minimum): ");
Console.WriteLine("Minimum of 6 characters. Please try again.");
Console.Write("Please enter your new password: ");
Console.WriteLine("Please login below.");
Console.Write("Please enter your username: ");
id2 = Console.ReadLine();
Console.Write("Please enter your password: ");
pw2 = Console.ReadLine();
if ((id == id2) && (pw == pw2))
Console.WriteLine("Login Succeeded! Welcome, {0}", id);
else if ((id != id2) && (pw != pw2))
Console.WriteLine("Sorry, that username and password does not match. ");
Console.WriteLine("You have 2 attempts remaining. ");
Console.WriteLine("You have 1 attempt remaining. ");
Console.Write("Sorry, that username does not match. ");
Console.WriteLine("You have 2 attempts remaining. ");
Console.WriteLine("You have 1 attempt remaining. ");
Console.Write("Sorry, that password does not match. ");
Console.WriteLine("You have 2 attempts remaining. ");
Console.WriteLine("You have 1 attempt remaining. ");
Console.WriteLine("You have no attempts remaining. Goodbye.");