Closed
Description
An "invalid token" message is displayed periodically on the ResetPassword page after using the ForgotPassword page to send the user an email, and clicking on that link.
I believe the fix should be to decode the code like this ...
var decoded = System.Web.HttpUtility.HtmlDecode(Input.Code);
var result = await _userManager.ResetPasswordAsync(user, decoded, Input.Password);
I would do a PR for this but I have never contributed before and I thought someone could squeeze this in.
Thanks
--Andy