├── .env.template ├── .github └── dependabot.yml ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── assets ├── css │ └── styles.css └── images │ ├── arrow.png │ ├── hellosocks-background.png │ ├── person.png │ └── shopping-bag.png ├── go.mod ├── go.sum ├── main.go ├── public └── example-app-image.png └── templates ├── emailSent.html ├── loggedIn.html ├── loggedOut.html └── loginOrSignUp.html /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/.env.template -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env.local -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /assets/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/assets/images/arrow.png -------------------------------------------------------------------------------- /assets/images/hellosocks-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/assets/images/hellosocks-background.png -------------------------------------------------------------------------------- /assets/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/assets/images/person.png -------------------------------------------------------------------------------- /assets/images/shopping-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/assets/images/shopping-bag.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/main.go -------------------------------------------------------------------------------- /public/example-app-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/public/example-app-image.png -------------------------------------------------------------------------------- /templates/emailSent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/templates/emailSent.html -------------------------------------------------------------------------------- /templates/loggedIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/templates/loggedIn.html -------------------------------------------------------------------------------- /templates/loggedOut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/templates/loggedOut.html -------------------------------------------------------------------------------- /templates/loginOrSignUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-go-magic-links/HEAD/templates/loginOrSignUp.html --------------------------------------------------------------------------------