tags:

views:

178

answers:

2

Can anyone give me some sample code with a template code to create a Django login?

Thanks.

+1  A: 

A sample login template is at the bottom of this section: http://docs.djangoproject.com/en/dev/topics/auth/#django.contrib.auth.views.login

Take a look at that entire page, it includes demo code and a complete walkthrough.

dar