fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <iomanip>
  4.  
  5. using namespace std;
  6.  
  7. void loginMenu() {
  8. string sUsername, sPassword;
  9.  
  10. cout << "╔══════════════════════════════════════════════════════════════════════╗" << endl;
  11. cout << "║ LOGIN MENU ║" << endl;
  12. cout << "╠══════════════════════════════════════════════════════════════════════╣" << endl;
  13. cout << "║ ██╗       ██████╗  ██████╗ ██╗███╗   ██                               ║" << endl;
  14. cout << "║ ██║     ██╔═══██╗██╔════╝ ██║████╗  ██║                               ║" << endl;
  15. cout << "║ ██║     ██║   ██║██║  ███╗██║██╔██╗ ██║                               ║" << endl;
  16. cout << "║ ██║     ██║   ██║██║   ██║██║██║╚██╗██║                               ║" << endl;
  17. cout << "║ ███████╗╚██████╔╝╚██████╔╝██║██║ ╚████║                               ║" << endl;
  18. cout << "║ ╚══════╝ ╚═════╝  ╚═════╝ ╚═╝╚═╝  ╚═══╝                               ║" << endl;
  19. cout << "║ ║" << endl;
  20. cout << "║ Username: " << setw(40) << right << "__________________________________ ║" << endl;
  21. cout << "║ Password: " << setw(40) << right << "__________________________________ ║" << endl;
  22. cout << "╚══════════════════════════════════════════════════════════════════════╝" << endl;
  23.  
  24. cin >> sUsername;
  25. system("cls");
  26. cin >> sPassword;
  27.  
  28. // Clear the screen and display the input information
  29. system("cls");
  30.  
  31. cout << "╔══════════════════════════════════════════════════════════════════════╗" << endl;
  32. cout << "║ LOGIN MENU ║" << endl;
  33. cout << "╠══════════════════════════════════════════════════════════════════════╣" << endl;
  34. cout << "║ Username: " << setw(40) << right << sUsername << " ║" << endl;
  35. cout << "║ Password: " << setw(40) << right << sPassword << " ║" << endl;
  36. cout << "╚══════════════════════════════════════════════════════════════════════╝" << endl;
  37. }
  38.  
  39. int main() {
  40. loginMenu();
  41. return 0;
  42. }
Success #stdin #stdout #stderr 0.01s 5280KB
stdin
cubovn
cubo2005
stdout
╔══════════════════════════════════════════════════════════════════════╗
║                                 LOGIN MENU                                  ║
╠══════════════════════════════════════════════════════════════════════╣
║  ██╗       ██████╗  ██████╗ ██╗███╗   ██                               ║
║  ██║     ██╔═══██╗██╔════╝ ██║████╗  ██║                               ║
║  ██║     ██║   ██║██║  ███╗██║██╔██╗ ██║                               ║
║  ██║     ██║   ██║██║   ██║██║██║╚██╗██║                               ║
║  ███████╗╚██████╔╝╚██████╔╝██║██║ ╚████║                               ║
║  ╚══════╝ ╚═════╝  ╚═════╝ ╚═╝╚═╝  ╚═══╝                               ║
║                                                                              ║
║  Username:  __________________________________  ║
║  Password:  __________________________________  ║
╚══════════════════════════════════════════════════════════════════════╝
╔══════════════════════════════════════════════════════════════════════╗
║                                 LOGIN MENU                                  ║
╠══════════════════════════════════════════════════════════════════════╣
║  Username:                                   cubovn  ║
║  Password:                                 cubo2005  ║
╚══════════════════════════════════════════════════════════════════════╝
stderr
sh: 1: cls: not found
sh: 1: cls: not found