Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.02 KB

README.md

File metadata and controls

34 lines (22 loc) · 1.02 KB

Authentication

User Authentication using MERN Stack

  • User credentials store in database with proper encryption.
  • Can't access Authorized components without user getting authenticated.
  • User Authentication is done by using JsonWebToken stored in Local Storage.
  • Context API used for state management in Frontend.
  • Material-UI used for styling in Frontend.

Screenshot-77

Screenshot-75

Screenshot-76

Screenshot-79

To Run

Create .env as .envexample in server folder and put your keys in there
Change url to your server routes in client/src/Api/api.js

For Client

cd client
npm start

For Server

cd server
npm start