https://github.com/unicodeveloper/mfa-react
Multi-factor Authentication in your React Apps
https://github.com/unicodeveloper/mfa-react
Last synced: 8 months ago
JSON representation
Multi-factor Authentication in your React Apps
- Host: GitHub
- URL: https://github.com/unicodeveloper/mfa-react
- Owner: unicodeveloper
- Created: 2016-11-08T04:43:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-11T14:10:54.000Z (about 9 years ago)
- Last Synced: 2025-05-07T16:12:05.109Z (8 months ago)
- Language: JavaScript
- Homepage: https://scotch.io/tutorials/multifactor-authentication-in-your-react-apps
- Size: 29.3 KB
- Stars: 9
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## MFA-REACT
This is a sample application that shows how to [implement multi-factor authentication](https://scotch.io/tutorials/multifactor-authentication-in-your-react-apps) in your React applications.
## Installation
Make sure you have the [create-react-app](https://github.com/facebookincubator/create-react-app) tool installed.
* 1. Clone this github repo
* 2. Run `npm install` to install all the required node modules
* 3. Open up `src/views/routes.js` and replace the placeholders `_AUTH0_CLIENT_ID_` and `_AUTH0_DOMAIN_` with real values from your [Auth0 dashboard](https://manage.auth0.com/#/).
* 4. Run `npm start` and proceed!
This [tutorial](https://scotch.io/tutorials/multifactor-authentication-in-your-react-apps) is necessary to fully configure this application for multi-factor authentication implementation.