├── .babelrc ├── .env ├── .gitignore ├── README.md ├── karma.conf.js ├── package.json ├── scripts └── prepublish.sh ├── src ├── app.css ├── app.js ├── containers │ └── App │ │ ├── App.js │ │ ├── App.spec.js │ │ └── styles.module.css ├── routes.js ├── styles │ ├── base.css │ ├── colors.css │ └── queries.css ├── utils │ ├── AuthService.js │ ├── constants.js │ └── jwtHelper.js └── views │ └── Main │ ├── Container.js │ ├── Home │ ├── Home.js │ └── styles.module.css │ ├── Instructor │ ├── Instructor.js │ └── styles.module.css │ ├── Login │ ├── Login.js │ └── styles.module.css │ ├── NewInstructor │ ├── NewInstructor.js │ └── styles.module.css │ ├── Profile │ ├── Profile.js │ └── styles.module.css │ ├── routes.js │ └── styles.module.css ├── tests.webpack.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | dist 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/package.json -------------------------------------------------------------------------------- /scripts/prepublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/scripts/prepublish.sh -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/app.js -------------------------------------------------------------------------------- /src/containers/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/containers/App/App.js -------------------------------------------------------------------------------- /src/containers/App/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/containers/App/App.spec.js -------------------------------------------------------------------------------- /src/containers/App/styles.module.css: -------------------------------------------------------------------------------- 1 | .wrapper { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/styles/base.css -------------------------------------------------------------------------------- /src/styles/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/styles/colors.css -------------------------------------------------------------------------------- /src/styles/queries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/styles/queries.css -------------------------------------------------------------------------------- /src/utils/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/utils/AuthService.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- 1 | export const API_URL = 'https://fem-user-authentication-api.herokuapp.com/api' 2 | -------------------------------------------------------------------------------- /src/utils/jwtHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/utils/jwtHelper.js -------------------------------------------------------------------------------- /src/views/Main/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/Container.js -------------------------------------------------------------------------------- /src/views/Main/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/Home/Home.js -------------------------------------------------------------------------------- /src/views/Main/Home/styles.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/Main/Instructor/Instructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/Instructor/Instructor.js -------------------------------------------------------------------------------- /src/views/Main/Instructor/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/Instructor/styles.module.css -------------------------------------------------------------------------------- /src/views/Main/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/Login/Login.js -------------------------------------------------------------------------------- /src/views/Main/Login/styles.module.css: -------------------------------------------------------------------------------- 1 | .tab-content { 2 | margin-top: 15px !important; 3 | } -------------------------------------------------------------------------------- /src/views/Main/NewInstructor/NewInstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/NewInstructor/NewInstructor.js -------------------------------------------------------------------------------- /src/views/Main/NewInstructor/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/NewInstructor/styles.module.css -------------------------------------------------------------------------------- /src/views/Main/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/Profile/Profile.js -------------------------------------------------------------------------------- /src/views/Main/Profile/styles.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/Main/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/routes.js -------------------------------------------------------------------------------- /src/views/Main/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/src/views/Main/styles.module.css -------------------------------------------------------------------------------- /tests.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/tests.webpack.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenkie/react-user-authentication/HEAD/webpack.config.js --------------------------------------------------------------------------------