jobportal/users/urls.py

8 lines
155 B
Python
Raw Normal View History

2020-12-28 20:28:52 +01:00
from django.urls import path
from .views import *
2020-12-31 15:10:53 +01:00
app_name = "users"
2020-12-28 20:28:52 +01:00
urlpatterns = [
2020-12-31 15:10:53 +01:00
path('register/', UserRegisterView.as_view(), name='register')
2020-12-28 20:28:52 +01:00
]