This commit is contained in:
2024-11-19 13:00:24 +07:00
commit 45e3c1f698
3462 changed files with 617437 additions and 0 deletions

7
contact/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from contact.views import *
urlpatterns = [
path('contact-us/', contactPageFront, name='contactPageFront'),
path('contact/', ContactSubmit, name='ContactSubmit'),
]