Commit 9f433336 authored by Joei Yucoco's avatar Joei Yucoco

created mapping functions in Contact's urls and views

parent a3e539a7
from django.shortcuts import render
from django.urls import path
from .views import index
urlpatterns = [
path('', index, name='index'),
]
app_name = "Contact"
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse('email me at: jowaless420@dooble.com')
# Create your views here.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment