nathaniel smith 9f5f47cd46 fix structure
2016-11-19 21:34:38 -08:00

9 lines
233 B
Python

from django.http import HttpResponse
from django.views.generic import TemplateView
class UserSignupView(TemplateView):
template_name = 'ttadmin/signup.html'
def post(self, request):
return HttpResponse('LOLOLOLOL')