├── client ├── src │ ├── App.css │ ├── components │ │ ├── Spinner.jsx │ │ ├── Product.jsx │ │ ├── layout.css │ │ └── Layout.jsx │ ├── index.js │ ├── redux │ │ ├── store.js │ │ └── rootReducer.js │ ├── pages │ │ ├── customers │ │ │ └── Customers.jsx │ │ ├── login │ │ │ └── Login.jsx │ │ ├── register │ │ │ └── Register.jsx │ │ ├── home │ │ │ └── Home.jsx │ │ ├── products │ │ │ └── Products.jsx │ │ ├── cart │ │ │ └── Cart.jsx │ │ └── bills │ │ │ └── Bills.jsx │ ├── App.js │ └── index.css ├── public │ ├── robots.txt │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── index.html ├── .gitignore ├── package.json └── README.md ├── .gitignore ├── routes ├── userRoutes.js ├── billsRoutes.js └── productsRoutes.js ├── models ├── userModel.js ├── productModel.js └── billsModel.js ├── controllers ├── billsController.js ├── userController.js └── productController.js ├── package.json ├── README.md ├── server.js └── utils └── data.js /client/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | dotenv 4 | env 5 | data.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amPhilip/POS-System/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amPhilip/POS-System/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amPhilip/POS-System/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/src/components/Spinner.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const Spinner = () => { 4 | return ( 5 |
Login
49 |Register Account
47 |