> I tried copying /django/contrib/auth/tests/templates/ to > /django/contrib/auth/ but this gives me a form with only two fields and > no submit button ...
The form you are getting sounds like the right one. You'll get a username field and a password field, but you'll have to provide your own <form> tag and submit button. Have a look at the sample login template: http://docs.djangoproject.com/en/dev//topics/auth/#django.contrib.auth.views.login -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

