├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── index.js └── pages │ ├── Login.js │ ├── ResetPassword.js │ └── SignUp.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/src/App.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/src/pages/Login.js -------------------------------------------------------------------------------- /src/pages/ResetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/src/pages/ResetPassword.js -------------------------------------------------------------------------------- /src/pages/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/src/pages/SignUp.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/Stytch-SignUp-Authentication-React/HEAD/yarn.lock --------------------------------------------------------------------------------