public ActionResult CheckEmail(string email)
        {
            var mgr = new UserAuthRepository();

            return(Json(mgr.CheckIfEmailExist(email), JsonRequestBehavior.AllowGet));
        }