├── .env.template ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── authcord.sql ├── libs └── database.js ├── package.json └── views ├── 404.handlebars ├── dashboard.handlebars ├── layouts └── main.handlebars ├── links.handlebars ├── login.handlebars ├── postlink.handlebars └── unauthorized.handlebars /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/app.js -------------------------------------------------------------------------------- /authcord.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/authcord.sql -------------------------------------------------------------------------------- /libs/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/libs/database.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/package.json -------------------------------------------------------------------------------- /views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/views/404.handlebars -------------------------------------------------------------------------------- /views/dashboard.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/views/dashboard.handlebars -------------------------------------------------------------------------------- /views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/views/layouts/main.handlebars -------------------------------------------------------------------------------- /views/links.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/views/links.handlebars -------------------------------------------------------------------------------- /views/login.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/views/login.handlebars -------------------------------------------------------------------------------- /views/postlink.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/views/postlink.handlebars -------------------------------------------------------------------------------- /views/unauthorized.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unreleased/Authcord/HEAD/views/unauthorized.handlebars --------------------------------------------------------------------------------