#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
void loginMenu() {
string sUsername, sPassword;
cout << "╔══════════════════════════════════════════════════════════════════════╗" << endl;
cout << "║ LOGIN MENU ║" << endl;
cout << "╠══════════════════════════════════════════════════════════════════════╣" << endl;
cout << "║ ██╗ ██████╗ ██████╗ ██╗███╗ ██ ║" << endl;
cout << "║ ██║ ██╔═══██╗██╔════╝ ██║████╗ ██║ ║" << endl;
cout << "║ ██║ ██║ ██║██║ ███╗██║██╔██╗ ██║ ║" << endl;
cout << "║ ██║ ██║ ██║██║ ██║██║██║╚██╗██║ ║" << endl;
cout << "║ ███████╗╚██████╔╝╚██████╔╝██║██║ ╚████║ ║" << endl;
cout << "║ ╚══════╝ ╚═════╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝ ║" << endl;
cout << "║ ║" << endl;
cout << "║ Username: " << setw(40) << right << "__________________________________ ║" << endl;
cout << "║ Password: " << setw(40) << right << "__________________________________ ║" << endl;
cout << "╚══════════════════════════════════════════════════════════════════════╝" << endl;
cin >> sUsername;
system("cls");
cin >> sPassword;
// Clear the screen and display the input information
system("cls");
cout << "╔══════════════════════════════════════════════════════════════════════╗" << endl;
cout << "║ LOGIN MENU ║" << endl;
cout << "╠══════════════════════════════════════════════════════════════════════╣" << endl;
cout << "║ Username: " << setw(40) << right << sUsername << " ║" << endl;
cout << "║ Password: " << setw(40) << right << sPassword << " ║" << endl;
cout << "╚══════════════════════════════════════════════════════════════════════╝" << endl;
}
int main() {
loginMenu();
return 0;
}