(self)
| 98 | self.write('</body></html>') |
| 99 | |
| 100 | def _write_form(self): |
| 101 | self.write('<form action="/client" method="POST">' |
| 102 | 'Request: <input type="text" name="message">' |
| 103 | '<input type="submit" value="Submit">' |
| 104 | '</form>') |
| 105 | |
| 106 | |
| 107 | loop = tornado.ioloop.IOLoop.instance() |