Switch to JWT
Last updated
Last updated
Set JWT Config
At present, jwt uses a dummy backend call, so we don't need any secret, but in actual implementation, you need to set a secret in the following file. For more detail refer to JWT here:
Change AuthProvider
Change auth Hooks
Comment another context in the following file and uncomment JWT one.
It's also super simple. We have provided a code that just needs to be replaced.
From: src\sections\auth\login\JWTLogin
To: src\sections\auth\auth-forms\AuthLogin.js
For nextJS, src\components\Authentication\login\JWTLogin to src\components\Authentication\auth-forms\AuthLogin.tsx
We have provided a code that just needs to be replaced.
From: src\sections\auth\register\JWTRegister
To: src\sections\auth\auth-forms\AuthRegister.js
For nextJS, src\components\Authentication\login\JWTRegister to src\components\Authentication\auth-forms\AuthRegister.tsx