├── README.md ├── backend ├── .env ├── client-credentials-token-generator.py ├── requirements.txt ├── server.py └── validator.py ├── frontend ├── package.json └── src │ ├── App.js │ ├── Login.js │ ├── authConfig.js │ ├── images │ └── randy-tarampi-U2eUlPEKIgU-unsplash.jpg │ └── style.css └── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/client-credentials-token-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/backend/client-credentials-token-generator.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/backend/server.py -------------------------------------------------------------------------------- /backend/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/backend/validator.py -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/frontend/src/Login.js -------------------------------------------------------------------------------- /frontend/src/authConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/frontend/src/authConfig.js -------------------------------------------------------------------------------- /frontend/src/images/randy-tarampi-U2eUlPEKIgU-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/frontend/src/images/randy-tarampi-U2eUlPEKIgU-unsplash.jpg -------------------------------------------------------------------------------- /frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/frontend/src/style.css -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/example-quote-generator-app/HEAD/screenshots/8.png --------------------------------------------------------------------------------