corrected views.user.register method .
--- a/taskapp/views/users.py Thu Feb 04 22:16:00 2010 +0530
+++ b/taskapp/views/users.py Thu Feb 04 22:17:36 2010 +0530
@@ -66,7 +66,7 @@
form = RegistrationForm(request.POST)
return render_to_response('user/register.html',{'form':form,'errors':errors})#HttpResponse('Password did not match')
else:
- form = RegistrationForm()
+ form = RegistrationForm(request.POST)
else:
form = RegistrationForm()
return render_to_response('user/register.html', {'form': form})