Reputation: 30855
What is the best way to incorporate this default Forgot Password functionality into a custom module?
Upvotes: 0
Views: 303
Reputation: 6962
Clicking the "Forgot Password" LinkButton redirects the user to SendPassword.ascx user control:
Response.Redirect(NavigateURL("SendPassword"), True)
You can do the same in your custom module, or roll up your own password reset form. In the latter case, I would take a copy of SendPassword.ascx as a template.
Upvotes: 3