├── .gitignore ├── .nvmrc ├── CODEOWNERS ├── LICENSE ├── README.md ├── package.json └── public ├── authenticate.html ├── css └── stytch.css ├── images ├── favicon.svg ├── github.svg └── logo.svg ├── index.html ├── js ├── app.js ├── authenticate.js ├── login.js └── profile.js └── profile.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.15.1 -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/package.json -------------------------------------------------------------------------------- /public/authenticate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/authenticate.html -------------------------------------------------------------------------------- /public/css/stytch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/css/stytch.css -------------------------------------------------------------------------------- /public/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/images/favicon.svg -------------------------------------------------------------------------------- /public/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/images/github.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/authenticate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/js/authenticate.js -------------------------------------------------------------------------------- /public/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/js/login.js -------------------------------------------------------------------------------- /public/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/js/profile.js -------------------------------------------------------------------------------- /public/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-javascript-example/HEAD/public/profile.html --------------------------------------------------------------------------------