I have a requirement in the product, to implement confirmation of password reset.
So, the scenario is next:
Once user get's to the ForgotPassword detail view, enters valid email. We send out email to the one he entered, with a confirmation link. When that confirmation click, I need to show 2 fieds, New Password and Confirm New Password, to allow password to be changed.
From the code perspective, I'll be generating URL to login.aspx with a parameter. Something like:
~\Login .aspx?id=123456789
So in the application, if that's the URL which was requested, instead of showing usual username and password fields on that page, I need to show 2 fields, I've mentoned above ( New password and Confirmation ) .
How can I achieve the behavior I've described?
Thank you in advance