[Answered ]-Django Form class question

2👍

I think your problem is that in your else you’re resetting your form to a new one, and the new form hasn’t been validated. Try removing this line of code from your else

rform = forms.RegisterForm()

Leave a comment