Commit 4d8e5555 authored by PranjalKushwaha's avatar PranjalKushwaha

Fix: Adding Login Prompts

parent 3f869582
......@@ -3,7 +3,10 @@
int main()
{
string name,password;
cin >> name >> password;
cout << "Enter Name:"<< endl;
cin >> name ;
cout << "Enter Password:"<< endl;
cin >> password;
if(login(name,password))
{
cout << "Success!"<< endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment