1st commit
This commit is contained in:
10
accounts/urls.py
Normal file
10
accounts/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = "accounts"
|
||||
|
||||
urlpatterns=[
|
||||
path('login/', views.login_user, name='login'),
|
||||
path('logout/', views.logout_user, name='logout'),
|
||||
path('register/', views.create_user, name='register'),
|
||||
]
|
||||
Reference in New Issue
Block a user