Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
string users[4] == {jill,gorege,joe_blow,john}
system("who am i > user.temp");
ifstream fin;
fin.open("user.temp");
string me;
fin >> me;
fin.close();
if(me == users[2])
{
//do stuff
}
else
{
/do stuff different
}