Login πŸ”‘

Here you will find all the documentation about how to create the login in your program! πŸ™ˆ

circle-exclamation

How is your information handled? πŸ¦€

C#
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?