10 lines
250 B
Python
10 lines
250 B
Python
from django.urls import path
|
|
|
|
from .views import UserLoginView, RegisterView
|
|
|
|
app_name = "user"
|
|
urlpatterns = [
|
|
path("login/", UserLoginView.as_view(), name="login"),
|
|
path("register/<uuid:token>/", RegisterView.as_view(), name="register"),
|
|
]
|