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

15
refundom/webpage/views.py Normal file
View File

@@ -0,0 +1,15 @@
from django.shortcuts import render
# Create your views here.
def index(request):
return render(request, "webpage/index.html", {})
def contact(request):
return render(request, "webpage/contact.html", {})
def process(request):
return render(request, "webpage/process.html", {})
def about_us(request):
return render(request, "webpage/about_us.html", {})