aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/urls.py')
-rw-r--r--accounts/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/accounts/urls.py b/accounts/urls.py
index a2d8541..6a44457 100644
--- a/accounts/urls.py
+++ b/accounts/urls.py
@@ -3,6 +3,7 @@ from django.urls import path, include
from . import views
urlpatterns = [
- path('signup/', views.SignUp.as_view(), name='signup'),
+ path('signup/', views.signup, name='signup'),
path('personal/', views.personal, name='personal'),
+ path('terms/', views.terms, name='terms'),
]