├── README.md ├── client ├── .env ├── .gitignore ├── App.js ├── README.md ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json └── src │ ├── assets │ ├── arrow_back.png │ ├── arrow_back@2x.png │ ├── background_dot.png │ ├── background_dot@2x.png │ ├── logo.png │ └── logo@2x.png │ ├── components │ ├── BackButton.js │ ├── Background.js │ ├── Button.js │ ├── Header.js │ ├── Logo.js │ ├── Paragraph.js │ └── TextInput.js │ ├── core │ └── theme.js │ ├── helpers │ ├── emailValidator.js │ ├── nameValidator.js │ └── numberValidator.js │ └── screens │ ├── Complete.js │ ├── Dashboard.js │ ├── StartScreen.js │ └── index.js └── server ├── .env ├── .gitignore ├── Procfile ├── README.md ├── app.js ├── app.json ├── config.js ├── package.json ├── public ├── .DS_Store ├── fd │ ├── bootstrap.min.css │ ├── index.html │ └── style.css ├── logo.png └── redirect │ └── index.html └── util └── partnerToken.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/README.md -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- 1 | BACKEND_URL= -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/App.js -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/README.md -------------------------------------------------------------------------------- /client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/app.json -------------------------------------------------------------------------------- /client/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/assets/adaptive-icon.png -------------------------------------------------------------------------------- /client/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/assets/favicon.png -------------------------------------------------------------------------------- /client/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/assets/icon.png -------------------------------------------------------------------------------- /client/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/assets/splash.png -------------------------------------------------------------------------------- /client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/babel.config.js -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/assets/arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/assets/arrow_back.png -------------------------------------------------------------------------------- /client/src/assets/arrow_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/assets/arrow_back@2x.png -------------------------------------------------------------------------------- /client/src/assets/background_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/assets/background_dot.png -------------------------------------------------------------------------------- /client/src/assets/background_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/assets/background_dot@2x.png -------------------------------------------------------------------------------- /client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/assets/logo.png -------------------------------------------------------------------------------- /client/src/assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/assets/logo@2x.png -------------------------------------------------------------------------------- /client/src/components/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/components/BackButton.js -------------------------------------------------------------------------------- /client/src/components/Background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/components/Background.js -------------------------------------------------------------------------------- /client/src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/components/Button.js -------------------------------------------------------------------------------- /client/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/components/Header.js -------------------------------------------------------------------------------- /client/src/components/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/components/Logo.js -------------------------------------------------------------------------------- /client/src/components/Paragraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/components/Paragraph.js -------------------------------------------------------------------------------- /client/src/components/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/components/TextInput.js -------------------------------------------------------------------------------- /client/src/core/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/core/theme.js -------------------------------------------------------------------------------- /client/src/helpers/emailValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/helpers/emailValidator.js -------------------------------------------------------------------------------- /client/src/helpers/nameValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/helpers/nameValidator.js -------------------------------------------------------------------------------- /client/src/helpers/numberValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/helpers/numberValidator.js -------------------------------------------------------------------------------- /client/src/screens/Complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/screens/Complete.js -------------------------------------------------------------------------------- /client/src/screens/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/screens/Dashboard.js -------------------------------------------------------------------------------- /client/src/screens/StartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/screens/StartScreen.js -------------------------------------------------------------------------------- /client/src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/client/src/screens/index.js -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/.env -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /server/Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js 2 | -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/README.md -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/app.js -------------------------------------------------------------------------------- /server/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/app.json -------------------------------------------------------------------------------- /server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/config.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/package.json -------------------------------------------------------------------------------- /server/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/public/.DS_Store -------------------------------------------------------------------------------- /server/public/fd/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/public/fd/bootstrap.min.css -------------------------------------------------------------------------------- /server/public/fd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/public/fd/index.html -------------------------------------------------------------------------------- /server/public/fd/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/public/fd/style.css -------------------------------------------------------------------------------- /server/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/public/logo.png -------------------------------------------------------------------------------- /server/public/redirect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/public/redirect/index.html -------------------------------------------------------------------------------- /server/util/partnerToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SetuHQ/fixed-deposits-sample-app/HEAD/server/util/partnerToken.js --------------------------------------------------------------------------------