errrr
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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"),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user