Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/satendra03/simple-auth
This is just a simple authentication application crafted using MongoDB, ExpressJS and NodeJS. Learning about authentication so created a simple application
https://github.com/satendra03/simple-auth
express express-js expressjs learing-by-code learning login mongodb mongodb-database node node-js nodejs signup
Last synced: 13 days ago
JSON representation
This is just a simple authentication application crafted using MongoDB, ExpressJS and NodeJS. Learning about authentication so created a simple application
- Host: GitHub
- URL: https://github.com/satendra03/simple-auth
- Owner: satendra03
- License: mit
- Created: 2024-12-20T18:09:33.000Z (15 days ago)
- Default Branch: main
- Last Pushed: 2024-12-21T10:43:31.000Z (15 days ago)
- Last Synced: 2024-12-21T11:27:47.377Z (15 days ago)
- Topics: express, express-js, expressjs, learing-by-code, learning, login, mongodb, mongodb-database, node, node-js, nodejs, signup
- Language: JavaScript
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# User Management System
This is a simple user management system built with Node.js, Express, and MongoDB. It allows users to sign up and log in.
---
## Features
- User sign-up with name, email, and password
- User login with email and password
- Form validation and error handling
- MongoDB integration for user data storage---
## Project Structure
```bash
│ .gitignore
│ app.js
│ connection.js
│ package-lock.json
│ package.json
│ README.md
│
├───controllers
│ index.js
│ users.js
│
├───models
│ users.js
│
├───public
│ ├───images
│ ├───javascripts
│ └───stylesheets
│ form.css
│ style.css
│
├───routes
│ index.js
│ users.js
│
└───views
error.ejs
home.ejs
login.ejs
signup.ejs
```
---## License
This project is licensed under the MIT License.