move to root directory

This commit is contained in:
Osman Faruk Bayram 2025-04-28 16:40:32 +03:00
parent 74681d0be6
commit d4b75f60e6
20 changed files with 0 additions and 0 deletions

8
account/urls.py Normal file
View 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'),
]