├── README.md ├── backend ├── .gitignore ├── README.md ├── anonymous-routes.js ├── config.json ├── package.json ├── protected-routes.js ├── quoter.js ├── quotes.json ├── server.js ├── statusError.js └── user-routes.js └── frontend ├── .bowerrc ├── .editorconfig ├── .gitignore ├── README.md ├── app.css ├── app.js ├── auth0-variables.js ├── bower.json ├── home ├── home.css ├── home.html └── home.js ├── index.html ├── login ├── login.css ├── login.html └── login.js └── signup ├── signup.css ├── signup.html └── signup.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/anonymous-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/anonymous-routes.js -------------------------------------------------------------------------------- /backend/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "secret": "ngEurope rocks!" 3 | } 4 | -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/protected-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/protected-routes.js -------------------------------------------------------------------------------- /backend/quoter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/quoter.js -------------------------------------------------------------------------------- /backend/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/quotes.json -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/server.js -------------------------------------------------------------------------------- /backend/statusError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/statusError.js -------------------------------------------------------------------------------- /backend/user-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/backend/user-routes.js -------------------------------------------------------------------------------- /frontend/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "vendor" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/app.js -------------------------------------------------------------------------------- /frontend/auth0-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/auth0-variables.js -------------------------------------------------------------------------------- /frontend/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/bower.json -------------------------------------------------------------------------------- /frontend/home/home.css: -------------------------------------------------------------------------------- 1 | .red { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/home/home.html -------------------------------------------------------------------------------- /frontend/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/home/home.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/login/login.css: -------------------------------------------------------------------------------- 1 | .login { 2 | width: 40%; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/login/login.html -------------------------------------------------------------------------------- /frontend/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/login/login.js -------------------------------------------------------------------------------- /frontend/signup/signup.css: -------------------------------------------------------------------------------- 1 | .signup { 2 | width: 40%; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/signup/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/signup/signup.html -------------------------------------------------------------------------------- /frontend/signup/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/angularjs-jwt-authentication-tutorial/HEAD/frontend/signup/signup.js --------------------------------------------------------------------------------