10 lines
231 B
Python
10 lines
231 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "user"
|
|
urlpatterns = [
|
|
path('user/login', views.LoginView.as_view(), name='login'),
|
|
path('user/profile', views.UserProfileView.as_view(), name="user_profile")
|
|
]
|