# AWS Cognito

At present, AWS uses a dummy config, so we don't need to change anything, but in actual implementation, you need to set poolId and appClientId in the following file. For more detail refer to AWS here: <https://aws.amazon.com/cognito/>

1. **Set AWS Config in .env**

{% code title="." %}

```javascript
###
## AWS

VITE_APP_AWS_POOL_ID=
VITE_APP_AWS_APP_CLIENT_ID=
###
```

{% endcode %}

2. **Change AuthProvider**

{% code title="..\src\App.jsx" %}

```javascript
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';
```

{% endcode %}

3. **Change auth Hooks**

Comment another context in the following file and uncomment AWSCognito one.

{% code title="..\src\hooks\useAuth.js" %}

```javascript
import AuthContext from 'contexts/AWSCognitoContext';
```

{% endcode %}

4. **Replace Login Code**

It's super simple. We have provided a code that just needs to be replaced.

* **VITE**:
  * From: `src\views\pages\authentication\login\AWSCognitoLogin`&#x20;
  * To: `src\views\pages\authentication\auth-forms\AuthLogin.jsx`
* **NEXTJS**:
  * From: `src\components\Authentication\login\AWSCongnitoLogin`
  * To: `src\components\Authentication\auth-forms\AuthLogin.jsx`

5. **Replace Register Code**

* **VITE**:
  * From: `src\views\pages\authentication\register\AWSCognitoRegister`&#x20;
  * To: `src\views\pages\authentication\auth-forms\AuthRegister.jsx`
* **NEXTJS**:
  * From: `src\components\Authentication\register\AWSCognitoRegister`
  * To: `src\components\Authentication\auth-forms\AuthRegister.jsx`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://codedthemes.gitbook.io/berry/v3.9.0/authentication/aws-cognito.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
