├── .gitignore ├── README.md ├── authmagic.js ├── package.json └── static ├── authmagic-email-plugin ├── nohtml-template.html └── template.html └── authmagic-link-email-phone-bootstrap-theme ├── check.html ├── images └── email.png ├── index.html ├── profile.html ├── scripts ├── check.js ├── index.js ├── polyfill.min.js ├── profile.js └── wait.js ├── styles └── main.css └── wait.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/README.md -------------------------------------------------------------------------------- /authmagic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/authmagic.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/package.json -------------------------------------------------------------------------------- /static/authmagic-email-plugin/nohtml-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-email-plugin/nohtml-template.html -------------------------------------------------------------------------------- /static/authmagic-email-plugin/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-email-plugin/template.html -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/check.html -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/images/email.png -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/index.html -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/profile.html -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/scripts/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/scripts/check.js -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/scripts/index.js -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/scripts/polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/scripts/polyfill.min.js -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/scripts/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/scripts/profile.js -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/scripts/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/scripts/wait.js -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/styles/main.css -------------------------------------------------------------------------------- /static/authmagic-link-email-phone-bootstrap-theme/wait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authmagic/authmagic-getting-started-example/HEAD/static/authmagic-link-email-phone-bootstrap-theme/wait.html --------------------------------------------------------------------------------