Login π
Here you will find all the documentation about how to create the login in your program! π
Console.Write(" Username: ");
string username = Console.ReadLine();
Console.Write(" Password: ");
string password = Console.ReadLine();
if (exampleApp.Login(username, password))
{
Console.WriteLine("Logged in!");
// Your code or method where your program will go after being logged
}Last updated
Was this helpful?