mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 12:12:55 +00:00
Complete Django AI agent marketplace with security optimizations and clean deployment documentation without any API keys or secrets. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
496 B
Python
13 lines
496 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'authentication'
|
|
|
|
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'),
|
|
path('forgot-password/', views.forgot_password_view, name='forgot_password'),
|
|
path('reset-password/<uuid:token>/', views.reset_password_view, name='reset_password'),
|
|
] |