Re: Request for new user account via email Django

2011-08-05 Thread Sheogora
There was a different problem actually, RequestContext(request) was never called I removed that line and put it in the above return. Worked fine :) thank you for the effort tho On Aug 4, 5:58 pm, Shawn Milochik wrote: > In your view you should be instantiating the form with the data from > reque

Re: Request for new user account via email Django

2011-08-04 Thread Shawn Milochik
In your view you should be instantiating the form with the data from request.POST instead of reading the values directly. Also, you mention that you get a 403 error when you post your name and password, but the form and template you pasted don't include password, so I suspect the error is comi