Exemplo n.º 1
0
        public void LogIn()
        {
            Console.WriteLine("Write your username: "******"Write your password: "******"You logged in successfully");
                Console.WriteLine("Displaying main menu......");
            }
            catch
            {
                Console.WriteLine("Wrong credentials");
                System.Threading.Thread.Sleep(1000);
                Console.Clear();
                Program.Start();
            }
            System.Threading.Thread.Sleep(1000);
            Console.Clear();
            MenuOption.MainMenu();
        }
Exemplo n.º 2
0
        public void Register()
        {
            Console.WriteLine("Write username:"******"Write your password: "******"You registered successfully");
                Console.WriteLine("Now you can log in");
                LogIn();
            }
            catch
            {
                Console.WriteLine("You did not reigstered");
                System.Threading.Thread.Sleep(1000);
                Console.Clear();
                Program.Start();
            }
            System.Threading.Thread.Sleep(1000);
            Console.Clear();
            // Program.Start();
            MenuOption.MainMenu();
        }