quantumtaskai-caprover/authentication/urls.py
thecyberlearn b0e8c917ef Initial clean CapRover deployment - no secrets
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>
2025-09-04 10:50:55 +05:30

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'),
]