13 lines
383 B
Python
13 lines
383 B
Python
from django.urls import path
|
|
|
|
from .views import ProfileView, SignupView, UserLoginView, UserLogoutView
|
|
|
|
app_name = "users"
|
|
|
|
urlpatterns = [
|
|
path("signup/", SignupView.as_view(), name="signup"),
|
|
path("login/", UserLoginView.as_view(), name="login"),
|
|
path("logout/", UserLogoutView.as_view(), name="logout"),
|
|
path("profile/", ProfileView.as_view(), name="profile"),
|
|
]
|