├── .env ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── main.py ├── main_async.py ├── requirements.txt ├── static ├── css │ └── styles.css └── images │ ├── arrow.png │ ├── hellosocks-background.png │ ├── person.png │ └── shopping-bag.png └── templates ├── emailSent.html ├── loggedIn.html ├── loggedOut.html └── loginOrSignUp.html /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/main.py -------------------------------------------------------------------------------- /main_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/main_async.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask[async]~=2.2 2 | python-dotenv~=0.20 3 | stytch~=7.6 4 | -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/static/images/arrow.png -------------------------------------------------------------------------------- /static/images/hellosocks-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/static/images/hellosocks-background.png -------------------------------------------------------------------------------- /static/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/static/images/person.png -------------------------------------------------------------------------------- /static/images/shopping-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/static/images/shopping-bag.png -------------------------------------------------------------------------------- /templates/emailSent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/templates/emailSent.html -------------------------------------------------------------------------------- /templates/loggedIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/templates/loggedIn.html -------------------------------------------------------------------------------- /templates/loggedOut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/templates/loggedOut.html -------------------------------------------------------------------------------- /templates/loginOrSignUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-python-magic-links/HEAD/templates/loginOrSignUp.html --------------------------------------------------------------------------------