asp.net mvc - MVC password reset mail NO SIMPLEMEMBERSHIP -
am bad of googler or there no guides out there on how reset password without simplemembership using tokenlink?
i want anonymous user input mail of account, send mail link , when visiting link user able reset password without old password. not using simplemembership!
i know how send emails , have never created token , use link in mail etc. there decent guides me this?
side note, i'm storing user information in azure tablestorage.
thanks
stack overflow isn't best place asking overly broad "how do this?" questions, nor "recommend me tutorial or guide".
(having said that, question/problem)
it should simple.
- the user clicks on "forgot password" link.
- generate random string ("token"), such guid , store (such in database). store time generated or expiration date.
- email user link site appropriate token.
- the user comes site. if token exists , done within expiration time (15 - 30 minutes?) give them form change password.
Comments
Post a Comment