1.

Explain user authentication in Django?

Answer»

Django comes with a built-in user authentication system, which HANDLES objects LIKE users, groups, user-permissions, and few cookie-based user sessions. Django User authentication not only authenticates the user but ALSO authorizes him.

The system CONSISTS and operates on these objects:

  • Users
  • Permissions
  • Groups
  • Password Hashing System
  • Forms Validation
  • A pluggable backend system


Discussion

No Comment Found