Node.js/Express project to implement a Notes app, that has the following:
It allow the user to login using /login route/page. User can login using Username/Password
It allow the user to logout using /logout URL
It has two pages, Home and Secure Notes
The Home page display a list of user Notes, those notes are public
The Secure Notes page, allow only logged in users to access. It display, secure notes entered by each user only.
It use MongoDB for storing data:
User: username, password
Notes: id (auto generated), text. Both secure and unsecure have same details