diff --git a/bikeshop_project/registration/urls.py b/bikeshop_project/registration/urls.py index 26c068d..84781dd 100644 --- a/bikeshop_project/registration/urls.py +++ b/bikeshop_project/registration/urls.py @@ -2,5 +2,5 @@ from django.conf.urls import url from .views import MemberFormView urlpatterns = [ - url(r'^new/$', MemberFormView.as_view()), + url(r'^new/$', MemberFormView.as_view(), name='signup'), ]