14 lines
234 B
Python
14 lines
234 B
Python
|
#!/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)
|