I have an Asp.Net MVC project that I created without template (from scratch).
I would implement a function to recover password, but I'm not sure where to start.
I have an Asp.Net MVC project that I created without template (from scratch).
I would implement a function to recover password, but I'm not sure where to start.
First you will need a table to store the password change requests, let's call it password_change_requests and you will need the following information.
Table id (recommended to be a GUID)
User Id
Time to expire
After creating this table your process should work as follows;