コード例 #1
0
        public ActionResult ResetPasswordConfirmed(Guid token)
        {
            var resetPassword = _resetPasswordService.GetByToken(token);

            if (resetPassword == null)
            {
                throw new Exception("ResetPassword doesn't exists.");
            }

            return(View());
        }