# Client-Auth-Solution **Repository Path**: mirrors_LambdaSchool/Client-Auth-Solution ## Basic Information - **Project Name**: Client-Auth-Solution - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LS-Client-Auth ## Packages * `redux-thunk` * `cors` ## Topics * Redux Thunk * localStorage * axios's config object * http headers ## Assignment Clone down this project. Run `npm i`. Start your MongoDB server by running `mongod` from the command line. Start the server (on the solution branch) of the LS-Auth repository. Complete the SignUp component. When the user fills out the form you should send and axios POST request to the server to save the user to the database. If successful then you should save the provided JWT to localStorage and then redirect the user to `/users`. User the existing code as a reference. You will also need to make sure that your server is using the `cors` middleware. Instructions for adding cors: * `npm i --save cors` * `const cors = require('cors');` * `app.use(cors());`