aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/urls.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--accounts/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/accounts/urls.py b/accounts/urls.py
new file mode 100644
index 0000000..d89128b
--- /dev/null
+++ b/accounts/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+
+from . import views
+
+urlpatterns = [
+ path('signup/', views.SignUp.as_view(), name='signup'),
+]