Initial Checkin

This commit is contained in:
2025-03-07 12:16:27 -06:00
parent 7fdee0f17e
commit 41cb6c42c0
177 changed files with 12777 additions and 0 deletions

10
refundom/webpage/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
path("contact", views.contact, name="contact"),
path("process", views.process, name="process"),
path("about_us", views.about_us, name="about_us"),
]