Ejemplo n.º 1
0
        // 비밀번호 입력받는 기능
        public string enterPwFunction()
        {
            string tempPW;

            print.enterPwMessage();
            PW = showStarPW();
            if (PW == "b")
            {
                run.startMember();
            }
            print.checkPwMessage();
            tempPW = showStarPW();
            if (tempPW == "b")
            {
                run.startMember();
            }

            if (exception.pwCheck(PW, tempPW))
            {
                enterPwFunction();
            }
            return(PW);
        }