├── .env ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── package.json ├── public ├── css │ └── styles.css └── images │ ├── arrow.png │ ├── hellosocks-background.png │ ├── person.png │ └── shopping-bag.png ├── server.js └── views ├── emailSent.ejs ├── loggedIn.ejs ├── loggedOut.ejs └── loginOrSignUp.ejs /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/package.json -------------------------------------------------------------------------------- /public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/public/css/styles.css -------------------------------------------------------------------------------- /public/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/public/images/arrow.png -------------------------------------------------------------------------------- /public/images/hellosocks-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/public/images/hellosocks-background.png -------------------------------------------------------------------------------- /public/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/public/images/person.png -------------------------------------------------------------------------------- /public/images/shopping-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/public/images/shopping-bag.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/server.js -------------------------------------------------------------------------------- /views/emailSent.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/views/emailSent.ejs -------------------------------------------------------------------------------- /views/loggedIn.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/views/loggedIn.ejs -------------------------------------------------------------------------------- /views/loggedOut.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/views/loggedOut.ejs -------------------------------------------------------------------------------- /views/loginOrSignUp.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-node-magic-links/HEAD/views/loginOrSignUp.ejs --------------------------------------------------------------------------------