Skip to main content

Posts

Showing posts with the label forgot password

How do I implement forgot password in Asp.Net MVC 5?

Hello everyone, I am going to share the code sample with simple steps for forgot a password or reset the password using Asp.Net MVC 5 . Following steps of forgot the password as given below:- 1.       The First click on forgot links 2.       Enter valid emailId in the input text box 3.       Validate emailId, If email valid sent an email to given email with attached links 4.       Click on given email links, open a popup with new pwd and confirm pwd 5.       Click on reset pwd, If valid pwd then sent successfully msg on below popup box, otherwise send error msg for an invalid attempt Example in detail step by step:- Click on forgot a link and enter the email, if an input email is a valid system will send you an email link to your given emailId. Forgot password HTTP post action method:-         [HttpPo...