tildetown-admin/ttadmin/users/views.py

9 lines
233 B
Python
Raw Normal View History

2016-11-20 05:34:38 +00:00
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')