Titivillus/signup/views.py

14 lines
234 B
Python
Raw Normal View History

2018-08-10 19:14:33 -04:00
#!/usr/bin/env python3
"""
/signup app views.
"""
from django.shortcuts import render
def index(request):
"""
The signup page.
"""
if request.method == "GET":
context = {}
return render(request, 'signup/index.html', context)