5 lines
120 B
Python
5 lines
120 B
Python
|
from django.http import HttpResponse
|
||
|
|
||
|
def index(request):
|
||
|
return HttpResponse("Hello. You're at the signup index.")
|