move to root directory
This commit is contained in:
parent
74681d0be6
commit
d4b75f60e6
20 changed files with 0 additions and 0 deletions
8
account/urls.py
Normal file
8
account/urls.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('login/', views.LoginView.as_view(), name='login'),
|
||||
path('logout/', views.LogoutView.as_view(), name='logout'),
|
||||
path('register/', views.RegisterView.as_view(), name='register'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue