No of visitors who read this post: 203
Category: Internet
Type: Question
Author: Anonymous
No votes yet

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

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

#

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/