mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 14:32:58 +00:00
9 lines
293 B
Python
9 lines
293 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('login/', views.login_view, name='login'),
|
|
path('register/', views.register_view, name='register'),
|
|
path('logout/', views.logout_view, name='logout'),
|
|
path('profile/', views.profile_view, name='profile'),
|
|
] |