How could I implement password reset in Node.js, express.js and Mongodb? I want to send user an email with password reset link which is valid for one hour or two. Is there any existing library that supports this? How could I implement it?
Thanks,
Feras
--
Job Board: http://jobs.nodejs.org/
Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com
To unsubscribe from this group, send email to
nodejs+un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
Feras,Do you have login/user side already built? Did you build it yourself?Are you using mongoose for your MongoDB?Srirangan suggestion is what I'd do. If your6're not sure, and want some help stick your code on GitHub - and I can give you a hand.
-MRdNk
On 13 May 2012, at 13:28, Srirangan wrote:
Persist a reset key in your database along with a timestamp.Create a route accepting the reset key and new password.Verify the reset key's timestamp when applying the new password to the user.- Sri
Srirangan | +91 9711 477 595 | About GitHub LinkedIn Twitter | Review19 "Collaborate & Track Decisions"
On Sun, May 13, 2012 at 5:16 PM, Feras Odeh wrote:
How could I implement password reset in Node.js, express.js and Mongodb? I want to send user an email with password reset link which is valid for one hour or two. Is there any existing library that supports this? How could I implement it?
Thanks,
Feras
--
Job Board: http://jobs.nodejs.org/
Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com
To unsubscribe from this group, send email to
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
--
Job Board: http://jobs.nodejs.org/
Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com
To unsubscribe from this group, send email to
passportjs.org
not that dreaded Microsoft thingy from around 2000
--
Hi JOhnoI am searching for a similar "standard" login/auth module. Did you ever find one / build your own? If you could share the code that you used I, and I'm sure other people looking for something similar, would really appreciate it.Thanks,Rory