The way to do authentication in Django

Asked By 7060 points N/A Posted on -
qa-featured

I am studying Django programming and will be appreciate for an example of code where authenticate and login method are used.

SHARE
Answered By 0 points N/A #84113

The way to do authentication in Django

qa-featured

Basically Django is a web framework which assists in building composite web applications simply and fast written in the Python. It has built-in user authentication system which deals with cookie-based user sessions, permissions groups and user accounts. This document explains how things work. The detailed user authentication tutorial for django can be from here.

 

https://docs.djangoproject.com/en/dev/topics/auth/

Related Questions