ModelState.AddModelError("ForgottenPasswordForm.", "No member found");
return PartialView("ForgottenPassword", model);
}
return PartialView("ForgottenPassword", model);
}
When i do debugging i got an error line 23 findMember.getProperty("resetGUID").Value = expiryTime.ToString("ddMMyyyyHHmmssFFFF"); is null, I have no crue whats wrong?!.
Have you taken this code from some other project / or off the internet?
It looks like you need to add a custom member property (like when you add a bit of data to a doc type) called resetGUID so that Umbraco has somewhere to store this against the member.
For the forum to be able to help you might have to give us a bit of background rather than a code dump - this
It's usually up to the developer to roll something. It's not trivial to do this properly as you'd need to send an email with a link (with a one time use GUID).
It's hard to recommend something without knowing your skill level - I haven't seen a member package that does everything if that's what you mean.
If you're happy to write a bit of code you should be able to get some ideas from here:
Please Help Implementing Forgotten password
I have been working on the Forgotten Password using razor. here is my code
Hi,
Have you got the solution please?
Thank you.
Kind Regards
Hi Simon,
Have you taken this code from some other project / or off the internet?
It looks like you need to add a custom member property (like when you add a bit of data to a doc type) called resetGUID so that Umbraco has somewhere to store this against the member.
For the forum to be able to help you might have to give us a bit of background rather than a code dump - this
Steve
hi Steve,
that code is not mine.
I am trying to get a Reset Password functionality within my umbraco website.?
Do you know with something for Umbraco 7.2.X in order for the user to have forgot password functionality?
thank you.
Kind Regards
Hi,
It's usually up to the developer to roll something. It's not trivial to do this properly as you'd need to send an email with a link (with a one time use GUID).
It's hard to recommend something without knowing your skill level - I haven't seen a member package that does everything if that's what you mean.
If you're happy to write a bit of code you should be able to get some ideas from here:
https://github.com/warrenbuckley/CWS-Umbraco-Standard-Membership
Kind regards
Steve
is working on a reply...