├── .gitignore ├── .travis.yml ├── README.md ├── custom-login ├── .gitignore ├── README.md ├── client_secrets.json.dist ├── helpers.py ├── main.py ├── templates │ ├── home.html │ ├── login.html │ ├── profile.html │ └── template.html └── user.py ├── okta-hosted-login ├── .gitignore ├── README.md ├── client_secrets.json.dist ├── helpers.py ├── main.py ├── templates │ ├── home.html │ ├── profile.html │ └── template.html └── user.py ├── package.json ├── requirements.txt ├── resource-server ├── .gitignore ├── README.md ├── client_secrets.json.dist ├── helpers.py └── main.py ├── scripts └── setup-env.js ├── setup.py └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/README.md -------------------------------------------------------------------------------- /custom-login/.gitignore: -------------------------------------------------------------------------------- 1 | client_secrets.json -------------------------------------------------------------------------------- /custom-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/README.md -------------------------------------------------------------------------------- /custom-login/client_secrets.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/client_secrets.json.dist -------------------------------------------------------------------------------- /custom-login/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/helpers.py -------------------------------------------------------------------------------- /custom-login/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/main.py -------------------------------------------------------------------------------- /custom-login/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/templates/home.html -------------------------------------------------------------------------------- /custom-login/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/templates/login.html -------------------------------------------------------------------------------- /custom-login/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/templates/profile.html -------------------------------------------------------------------------------- /custom-login/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/templates/template.html -------------------------------------------------------------------------------- /custom-login/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/custom-login/user.py -------------------------------------------------------------------------------- /okta-hosted-login/.gitignore: -------------------------------------------------------------------------------- 1 | client_secrets.json -------------------------------------------------------------------------------- /okta-hosted-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/README.md -------------------------------------------------------------------------------- /okta-hosted-login/client_secrets.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/client_secrets.json.dist -------------------------------------------------------------------------------- /okta-hosted-login/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/helpers.py -------------------------------------------------------------------------------- /okta-hosted-login/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/main.py -------------------------------------------------------------------------------- /okta-hosted-login/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/templates/home.html -------------------------------------------------------------------------------- /okta-hosted-login/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/templates/profile.html -------------------------------------------------------------------------------- /okta-hosted-login/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/templates/template.html -------------------------------------------------------------------------------- /okta-hosted-login/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/okta-hosted-login/user.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource-server/.gitignore: -------------------------------------------------------------------------------- 1 | client_secrets.json -------------------------------------------------------------------------------- /resource-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/resource-server/README.md -------------------------------------------------------------------------------- /resource-server/client_secrets.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/resource-server/client_secrets.json.dist -------------------------------------------------------------------------------- /resource-server/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/resource-server/helpers.py -------------------------------------------------------------------------------- /resource-server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/resource-server/main.py -------------------------------------------------------------------------------- /scripts/setup-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/scripts/setup-env.js -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/setup.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okta/samples-python-flask/HEAD/yarn.lock --------------------------------------------------------------------------------