I'm trying to create a simple login page in c++. Currently, in my program you have to enter the username before the password input becomes available. I want to be able to show both and have the option to input one before the other.
cout << "User: "; cin >> enteruser;
cout << "Pass: "; cin >> enterpass;
return 0;
I want it to be similar to a web login page, but in a c++ console application window.