Code:goto loop1;
I just woke up, not sure if I missed anything.Code:#include <windows.h>
#include <iostream>
#include <string>
using namespace std;
string pass;
string username;
int main()
{
loop1:
cout << "Enter username\n\n";
getline(cin, username);
cout << "Enter password\n\n";
getline(cin, pass);
if (username == "lala" && password == "haha")
{
cout << "Welcome, put more shit here.\n\n";
}
else
{
cout << "Wrong, little shit head.\n\n";
Sleep (2000);
goto loop1;
}
return 0;
}

