How does authentication differ from authorization in Django?
Authentication verifies who the user is, while authorization decides what that user is allowed to do.
- Login proves identity
- Permissions control access
- Both matter for secure apps
How does authentication differ from authorization in Django?