8 lines
261 B
Python
8 lines
261 B
Python
from django.urls import path, include
|
|
from .auth.registration_view import RegistrationView
|
|
|
|
# Assign register url
|
|
urlpatterns = [
|
|
path("auth/", include("django.contrib.auth.urls")),
|
|
path('auth/register/', RegistrationView.as_view(), name='register'),
|
|
]
|