11 lines
218 B
Python
11 lines
218 B
Python
#!/usr/bin/env python
|
|
#-*- coding: utf-8 -*-
|
|
|
|
import tornado.web
|
|
from handlers.home import BaseHandler
|
|
|
|
class IndexHandler(BaseHandler):
|
|
|
|
def get(self):
|
|
self.render('home/index.html', error=None, email='')
|