├── README.md ├── images ├── 1.png ├── 2.jpg ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── inp.png ├── sslbackend ├── .gitignore ├── __init__.py ├── app.py └── requirements.txt └── sslfrontend ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── cancel.jsx │ ├── fail.jsx │ ├── index.js │ ├── ipn.jsx │ ├── payment.jsx │ └── success.jsx ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js ├── setupProxy.js └── setupTests.js └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/README.md -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/2.jpg -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/4.png -------------------------------------------------------------------------------- /images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/5.png -------------------------------------------------------------------------------- /images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/6.png -------------------------------------------------------------------------------- /images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/7.png -------------------------------------------------------------------------------- /images/inp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/images/inp.png -------------------------------------------------------------------------------- /sslbackend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslbackend/.gitignore -------------------------------------------------------------------------------- /sslbackend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sslbackend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslbackend/app.py -------------------------------------------------------------------------------- /sslbackend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslbackend/requirements.txt -------------------------------------------------------------------------------- /sslfrontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/.gitignore -------------------------------------------------------------------------------- /sslfrontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/README.md -------------------------------------------------------------------------------- /sslfrontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/package.json -------------------------------------------------------------------------------- /sslfrontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/public/favicon.ico -------------------------------------------------------------------------------- /sslfrontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/public/index.html -------------------------------------------------------------------------------- /sslfrontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/public/logo192.png -------------------------------------------------------------------------------- /sslfrontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/public/logo512.png -------------------------------------------------------------------------------- /sslfrontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/public/manifest.json -------------------------------------------------------------------------------- /sslfrontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/public/robots.txt -------------------------------------------------------------------------------- /sslfrontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/App.css -------------------------------------------------------------------------------- /sslfrontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/App.js -------------------------------------------------------------------------------- /sslfrontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/App.test.js -------------------------------------------------------------------------------- /sslfrontend/src/components/cancel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/components/cancel.jsx -------------------------------------------------------------------------------- /sslfrontend/src/components/fail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/components/fail.jsx -------------------------------------------------------------------------------- /sslfrontend/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/components/index.js -------------------------------------------------------------------------------- /sslfrontend/src/components/ipn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/components/ipn.jsx -------------------------------------------------------------------------------- /sslfrontend/src/components/payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/components/payment.jsx -------------------------------------------------------------------------------- /sslfrontend/src/components/success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/components/success.jsx -------------------------------------------------------------------------------- /sslfrontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/index.css -------------------------------------------------------------------------------- /sslfrontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/index.js -------------------------------------------------------------------------------- /sslfrontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/logo.svg -------------------------------------------------------------------------------- /sslfrontend/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/serviceWorker.js -------------------------------------------------------------------------------- /sslfrontend/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/setupProxy.js -------------------------------------------------------------------------------- /sslfrontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/src/setupTests.js -------------------------------------------------------------------------------- /sslfrontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FahadAminShovon/SSLCOMMERZ-integration-with-react-and-flask/HEAD/sslfrontend/yarn.lock --------------------------------------------------------------------------------