public void checkLose(string email)
    {
        UserPanel user = getUserPanel(email);

        if (user.userData.isLose)
        {
            user.lose();
        }
    }