gitextract_o8cqunop/ ├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src/ │ ├── _components/ │ │ ├── Alert.jsx │ │ ├── Nav.jsx │ │ ├── PrivateRoute.jsx │ │ └── index.js │ ├── _helpers/ │ │ ├── fake-backend.js │ │ ├── fetch-wrapper.js │ │ ├── history.js │ │ ├── index.js │ │ └── role.js │ ├── _services/ │ │ ├── account.service.js │ │ ├── alert.service.js │ │ └── index.js │ ├── account/ │ │ ├── ForgotPassword.jsx │ │ ├── Index.jsx │ │ ├── Login.jsx │ │ ├── Register.jsx │ │ ├── ResetPassword.jsx │ │ └── VerifyEmail.jsx │ ├── admin/ │ │ ├── Index.jsx │ │ ├── Overview.jsx │ │ └── users/ │ │ ├── AddEdit.jsx │ │ ├── Index.jsx │ │ └── List.jsx │ ├── app/ │ │ └── Index.jsx │ ├── home/ │ │ └── Index.jsx │ ├── index.html │ ├── index.jsx │ ├── profile/ │ │ ├── Details.jsx │ │ ├── Index.jsx │ │ └── Update.jsx │ └── styles.less └── webpack.config.js