melezhik has asked for the wisdom of the Perl Monks concerning the following question:

Hi all!

I am building a web application with the authentication capabilities. So not to reinvent the wheel, I am almost sure there are good, proven solutions for such a task. My general requirements:

- login for existed user ( sign in )
- create user account ( sign up )
- send email notification ( on sign up action )
- reset user password on request ( based on email notification )
- captures ( to protect form bots ) - not that necessary, but
- ability to store password in encrypted form ( probably could do it, but just in case )

---

- Any ideas? openID is also welcome, but I probably need more simple solutions with minimal low level coding, efforts

- Thanks in advance

Replies are listed 'Best First'.
Re: authentication with perl
by Perlbotics (Archbishop) on Dec 06, 2015 at 20:23 UTC
      thanks, @Perlbotics will look into this ...
        Please don't store the passwords, even if encrypted. Do a little research on storing a hash of passwords, and the web will be a better place.
      Very nice article on perltricks , thanks alot, again.