nathaniel smith 9f5f47cd46 fix structure
2016-11-19 21:34:38 -08:00

10 lines
176 B
Python

from django.conf.urls import url
from .views import UserSignupView
app_name = 'users'
urlpatterns = [
url(r'^signup/?$', UserSignupView.as_view(), name='signup'),
]