New Text Document
New Text Document
**Sign Up Endpoint**:
- Method: POST
- Description: Allows a user to create a new account by providing their email,
username, and password.
- Request Body: { "email": "[email protected]", "username": "example_user",
"password": "password123" }
2. **Log In Endpoint**:
- Method: POST
- Description: Allows a user to log in using their email and password.
- Request Body: { "email": "[email protected]", "password": "password123" }
4. **Remember Me Endpoint**:
- Method: POST
- Description: Sets a cookie to remember the user's authentication status.