When a user registers, their credentials should be securely stored in the database. The following fields must be saved:
- Username: The unique identifier for the user.
- Email: The user's email address.
- Hashed Password: The password must be securely hashed before storage.
BcryptJS using as library. JWT TOKEN environment variable using for hash.

When a user registers, their credentials should be securely stored in the database. The following fields must be saved:
BcryptJS using as library. JWT TOKEN environment variable using for hash.