#include <iostream>

using namespace std;

void loginMenu()
{
	system("cls");

	cout<<"\n";
	cout<<"\t               ###############################          "<<endl;
	cout<<"\t            #####################################       "<<endl;
	cout<<"\t         ###########################################    "<<endl;
	cout<<"\t      ################################################# "<<endl;
	cout<<"\t        ##              WELCOME TO PGG             ##   "<<endl;
	cout<<"\t        ##   ===================================   ##   "<<endl;
	cout<<"\t        ##         1) REGISTER                     ##   "<<endl;
	cout<<"\t        ##         2) LOGIN                        ##   "<<endl;
	cout<<"\t        ##         3) EXIT                         ##   "<<endl;
	cout<<"\t        ##   ===================================   ##   "<<endl;
	cout<<"\t        #############################################   "<<endl;
	cout<<"\t      ################################################# "<<endl;
	cout<<endl;
}

customerMenu()
{
	system("cls");

	cout<<"\n";
	cout<<"\t               ###############################          "<<endl;
	cout<<"\t            #####################################       "<<endl;
	cout<<"\t         ###########################################    "<<endl;
	cout<<"\t      ################################################# "<<endl;
	cout<<"\t                     WELCOME TO PGG                     "<<endl;
	cout<<"\t        ##           Customer Main Menu            ##   "<<endl;
	cout<<"\t        ##   ===================================   ##   "<<endl;
	cout<<"\t        ##         1) VIEW FLIGHTS                 ##   "<<endl;
	cout<<"\t        ##         2) BUY TICKET                   ##   "<<endl;
	cout<<"\t        ##         3) PRINT                        ##   "<<endl;
	cout<<"\t        ##         4) EXIT                         ##   "<<endl;
	cout<<"\t        ##   ===================================   ##   "<<endl;
	cout<<"\t        #############################################   "<<endl;
	cout<<"\t      ################################################# "<<endl;
	cout<<endl;
}
