node-authentication
├── .env
├── .gitignore
├── dist
│ ├── app.js
│ ├── controllers
│ │ └── authControllers.js
│ ├── middleware
│ │ └── requireAuth.js
│ ├── models
│ │ └── User.js
│ ├── public
│ │ ├── css
│ │ │ ├── input.css
│ │ │ └── output.css
│ │ └── images
│ │ └── favicon.svg
│ ├── routes
│ │ └── authRoutes.js
│ └── views
│ ├── home.ejs
│ ├── login.ejs
│ ├── partials
│ │ ├── footer.ejs
│ │ └── header.ejs
│ ├── reset-password.ejs
│ ├── signup.ejs
│ ├── user.ejs
│ └── verify-email.ejs
├── package-lock.json
├── package.json
├── README.md
├── src
│ ├── app.ts
│ ├── controllers
│ │ └── authControllers.ts
│ ├── middleware
│ │ └── requireAuth.ts
│ ├── models
│ │ └── User.ts
│ ├── public
│ │ ├── css
│ │ │ ├── input.css
│ │ │ └── output.css
│ │ └── images
│ │ └── favicon.svg
│ ├── routes
│ │ └── authRoutes.ts
│ └── views
│ ├── home.ejs
│ ├── login.ejs
│ ├── partials
│ │ ├── footer.ejs
│ │ └── header.ejs
│ ├── reset-password.ejs
│ ├── signup.ejs
│ ├── user.ejs
│ └── verify-email.ejs
├── tailwind.config.ts
└── tsconfig.json
-
Notifications
You must be signed in to change notification settings - Fork 0
node authentication
StevenMODIMO/node-authentication
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
node authentication