Django-Registration has several form classes in the forms.py file. One is \"class RegistrationFormTermsOfService(RegistrationForm) ..
What do I change in the rest of Dja
You can simply go into your urls.py and override the form class by doing something like:
urls.py
from registration.forms import RegistrationFormTermsOfService (r'^accounts/register/$', 'registration.views.register', {'form_class' : RegistrationFormTermsOfService}),