| 12 | | 3. Modify Registration application for: |
| 13 | | - find file /registration/views.py |
| 14 | | - change import of RegistrationForm class to: |
| 15 | | from accounts.forms import AccountRegistrationForm as RegistrationForm |
| | 12 | 3. Setup external Registration form. In project urls reset url like this: |
| | 13 | url(r'^register/$', register, {'form_class': accounts.forms.AccountRegistrationForm }, name='registration_register') |
| | 14 | If you need external Profile edit form you can do it an |
| | 15 | url(r'^edit/$',views.edit_profile, {'form_class': accounts.forms.MyEditProfileForm }, name='profiles_edit_profile'), |