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

Request for new user account via email Django

2011-08-04 Thread Sheogora
I am trying to make a little function for a user to request an account and the information he puts in is sent to a person who will make an account. I was following this example mostly http://djangosnippets.org/snippets/261/ but it is very old and might be inaccurate for I have got and thus I have p