36781-vm/core/urls.py
Flatlogic Bot 02525633d4 harsh
2025-12-09 06:05:51 +00:00

8 lines
216 B
Python

from django.urls import path
from .views import index, registration_success
urlpatterns = [
path('', index, name='index'),
path('registration-success/', registration_success, name='registration_success'),
]