🔐 Using Credential Authentication

Our app implements credential authentication using the Auth.js library. This method allows users to log in securely using their credentials.

Let's explore how to implement and use credential authentication in our app.

Additional Configuration

Ensure that the sendGridLogin setting is disabled in your settings.js.

Check sendGridLogin Setting
1 // In settings.js
2 const config = {
3   ...
4   appInfo: {
5     ...
6     sendGridLogin: false, // Ensure this is false
7     ...
8   },
9   ...
10 };
⚠️ Note: Don't forget to set up your MongoDB for functionality. MongoDB setup