├── .gitignore ├── README.md ├── functions.js ├── index.js ├── package.json └── views ├── home.handlebars ├── layouts └── main.handlebars └── signin.handlebars /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/README.md -------------------------------------------------------------------------------- /functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/functions.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/package.json -------------------------------------------------------------------------------- /views/home.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/views/home.handlebars -------------------------------------------------------------------------------- /views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/views/layouts/main.handlebars -------------------------------------------------------------------------------- /views/signin.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymander/userAuth/HEAD/views/signin.handlebars --------------------------------------------------------------------------------