Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi everyone!
I want to implement a "Password forgot" controller, but cant find a way to do this.
I looked into the documentation. i found the ChangingPasswordModel() but for this i need the old password and i cant find a way to get this...
Also how can i get the ProfileModel by username or email?
Thanks for any reply
I believe this is what your after:
_memberService = ApplicationContext.Current.Services.MemberService; var member = _memberService.GetByEmail("memberEmailAddressHere"); _memberService.SavePassword(member,"newPasswordHere");
Whoooop awesome!
This memberservice is never mentioned in the documentation :(
Thank you!
This is great - works! But could someone please tell me, if there is an easy way to turn this into a form?
I mean, a field to input the email adress, the new password and then a submit button
Is it possible to do in the same Partial View Macro File?
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to change password of a Member
Hi everyone!
I want to implement a "Password forgot" controller, but cant find a way to do this.
I looked into the documentation. i found the ChangingPasswordModel() but for this i need the old password and i cant find a way to get this...
Also how can i get the ProfileModel by username or email?
Thanks for any reply
I believe this is what your after:
Whoooop awesome!
This memberservice is never mentioned in the documentation :(
Thank you!
This is great - works! But could someone please tell me, if there is an easy way to turn this into a form?
I mean, a field to input the email adress, the new password and then a submit button
Is it possible to do in the same Partial View Macro File?
is working on a reply...