├── .gitignore ├── README.md ├── package.json ├── passport-config.js ├── server.js └── views ├── index.ejs ├── login.ejs └── register.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Raph/authsystem/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Raph/authsystem/HEAD/package.json -------------------------------------------------------------------------------- /passport-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Raph/authsystem/HEAD/passport-config.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Raph/authsystem/HEAD/server.js -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Raph/authsystem/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Raph/authsystem/HEAD/views/login.ejs -------------------------------------------------------------------------------- /views/register.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Raph/authsystem/HEAD/views/register.ejs --------------------------------------------------------------------------------