12 lines
246 B
Python
12 lines
246 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "accounts"
|
|
|
|
urlpatterns = [
|
|
path("login/", views.login_view, name="login"),
|
|
path("logout/", views.logout_view, name="logout"),
|
|
path("profile/", views.profile, name="profile"),
|
|
]
|
|
|